public enum OutputPolicy extends java.lang.Enum<OutputPolicy>
Enum Constant and Description |
---|
CLONE_ALL |
CLONE_MULTIPLE |
CLONE_NONE |
Modifier and Type | Method and Description |
---|---|
static OutputPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OutputPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputPolicy CLONE_ALL
public static final OutputPolicy CLONE_MULTIPLE
public static final OutputPolicy CLONE_NONE
public static OutputPolicy[] values()
for (OutputPolicy c : OutputPolicy.values()) System.out.println(c);
public static OutputPolicy 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