public enum SteppedLine extends Enum<SteppedLine> implements Key
Enum Constant and Description |
---|
AFTER
Step-after Interpolation
|
BEFORE
Step-before Interpolation
|
FALSE
No Step Interpolation (default)
|
MIDDLE
Step-middle Interpolation
|
Modifier and Type | Method and Description |
---|---|
String |
value()
Returns the name value of property
|
static SteppedLine |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SteppedLine[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
checkAndGetIfValid, checkIfValid, compare, create, equals, getKeyByValue, getKeyByValue, hasKeyByValue, isValid
public static final SteppedLine BEFORE
public static final SteppedLine AFTER
public static final SteppedLine MIDDLE
public static final SteppedLine FALSE
public static SteppedLine[] values()
for (SteppedLine c : SteppedLine.values()) System.out.println(c);
public static SteppedLine 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 null