public enum DependencyInjectionPoint extends Enum<DependencyInjectionPoint>
Java class for DependencyInjectionPoint.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="DependencyInjectionPoint">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="HEADER"/>
<enumeration value="BEFORE_BODY"/>
<enumeration value="AFTER_BODY"/>
<enumeration value="BEFORE_WIDGET"/>
<enumeration value="AFTER_WIDGET"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AFTER_BODY |
AFTER_WIDGET |
BEFORE_BODY |
BEFORE_WIDGET |
HEADER |
| Modifier and Type | Method and Description |
|---|---|
static DependencyInjectionPoint |
fromValue(String v) |
String |
value() |
static DependencyInjectionPoint |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DependencyInjectionPoint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DependencyInjectionPoint HEADER
public static final DependencyInjectionPoint BEFORE_BODY
public static final DependencyInjectionPoint AFTER_BODY
public static final DependencyInjectionPoint BEFORE_WIDGET
public static final DependencyInjectionPoint AFTER_WIDGET
public static DependencyInjectionPoint[] values()
for (DependencyInjectionPoint c : DependencyInjectionPoint.values()) System.out.println(c);
public static DependencyInjectionPoint valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static DependencyInjectionPoint fromValue(String v)
Copyright © 2018. All rights reserved.