public enum LockAction extends Enum<LockAction>
Modifier and Type | Method and Description |
---|---|
static LockAction |
getInstance(int ordinal) |
static LockAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LockAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LockAction CREATE
public static final LockAction REFRESH
public static final LockAction RELEASE
public static LockAction[] values()
for (LockAction c : LockAction.values()) System.out.println(c);
public static LockAction 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 nullpublic static LockAction getInstance(int ordinal)
Copyright © 2016 Egothor. All Rights Reserved.