public static enum ParamOption.RelativePosition extends java.lang.Enum<ParamOption.RelativePosition>
Enum Constant and Description |
---|
after
After an other parameter (use
ParamOption.setRelativeParameterKey(String) with that) |
before
Before an other parameter (use
ParamOption.setRelativeParameterKey(String) with that) |
first
First parameter
|
last
Last parameter (/!
|
none
Undefined
|
Modifier and Type | Method and Description |
---|---|
static ParamOption.RelativePosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ParamOption.RelativePosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParamOption.RelativePosition none
public static final ParamOption.RelativePosition first
public static final ParamOption.RelativePosition last
public static final ParamOption.RelativePosition before
ParamOption.setRelativeParameterKey(String)
with that)public static final ParamOption.RelativePosition after
ParamOption.setRelativeParameterKey(String)
with that)public static ParamOption.RelativePosition[] values()
for (ParamOption.RelativePosition c : ParamOption.RelativePosition.values()) System.out.println(c);
public static ParamOption.RelativePosition 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