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