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