public static enum ICloningStrategy.Strategy extends Enum<ICloningStrategy.Strategy>
| Enum Constant and Description |
|---|
IGNORE |
NULL_INSTEAD_OF_CLONE |
SAME_INSTANCE_INSTEAD_OF_CLONE |
| Modifier and Type | Method and Description |
|---|---|
static ICloningStrategy.Strategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ICloningStrategy.Strategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ICloningStrategy.Strategy NULL_INSTEAD_OF_CLONE
public static final ICloningStrategy.Strategy SAME_INSTANCE_INSTEAD_OF_CLONE
public static final ICloningStrategy.Strategy IGNORE
public static ICloningStrategy.Strategy[] values()
for (ICloningStrategy.Strategy c : ICloningStrategy.Strategy.values()) System.out.println(c);
public static ICloningStrategy.Strategy 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 © 2017. All rights reserved.