public static enum Part.GetTarget extends java.lang.Enum<Part.GetTarget>
| Enum Constant and Description |
|---|
CLONE_SOURCE
Indicates to clone the source in the target if a target does not exist yet.
|
CREATE_EMPTY
Indicates to create an empty target if a target does not exist yet.
|
DONT_CREATE
Indicates to not create a target if a target does not exists yet: the target remains null.
|
| Modifier and Type | Method and Description |
|---|---|
static Part.GetTarget |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Part.GetTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Part.GetTarget DONT_CREATE
public static final Part.GetTarget CREATE_EMPTY
public static final Part.GetTarget CLONE_SOURCE
public static Part.GetTarget[] values()
for (Part.GetTarget c : Part.GetTarget.values()) System.out.println(c);
public static Part.GetTarget 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