public enum SteppedLine extends Enum<SteppedLine> implements Key
Enum Constant and Description |
---|
after
Step-after Interpolation
|
before
Step-before Interpolation
|
nosteppedline
No Step Interpolation (default)
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final SteppedLine before
public static final SteppedLine after
public static final SteppedLine nosteppedline
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