public enum CustomizerPlacement extends java.lang.Enum<CustomizerPlacement>
Enum Constant and Description |
---|
AFTER_PROPERTIES
Place the customizer before the default "Properties" tab.
|
BEFORE_PROPERTIES
Place the customizer after the default "Properties" tab.
|
Modifier and Type | Method and Description |
---|---|
static CustomizerPlacement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomizerPlacement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomizerPlacement AFTER_PROPERTIES
public static final CustomizerPlacement BEFORE_PROPERTIES
public static CustomizerPlacement[] values()
for (CustomizerPlacement c : CustomizerPlacement.values()) System.out.println(c);
public static CustomizerPlacement valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null