public static enum Parameter.Mode extends Enum<Parameter.Mode>
Enum Constant and Description |
---|
APPEND |
APPEND_WITH_SPACE |
OVERRIDE |
PREPEND |
PREPEND_WITH_SPACE |
Modifier and Type | Method and Description |
---|---|
static Parameter.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Parameter.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parameter.Mode OVERRIDE
public static final Parameter.Mode APPEND
public static final Parameter.Mode PREPEND
public static final Parameter.Mode APPEND_WITH_SPACE
public static final Parameter.Mode PREPEND_WITH_SPACE
public static Parameter.Mode[] values()
for (Parameter.Mode c : Parameter.Mode.values()) System.out.println(c);
public static Parameter.Mode 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 nullCopyright © 2013–2015 Dandelion Project. All rights reserved.