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