public enum GuardEnum extends Enum<GuardEnum>
Enum Constant and Description |
---|
TIMER_WITHIN
Timer guard.
|
TIMER_WITHINMAX |
WHILE_GUARD |
Modifier and Type | Method and Description |
---|---|
static GuardEnum |
forName(String namespace,
String name)
Returns the enum for the given namespace and name.
|
Class |
getClazz()
Gets the implementation class.
|
String |
getName()
Returns name.
|
String |
getNamespace()
Returns the namespace name.
|
static boolean |
isWhile(String namespace,
String name) |
static GuardEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GuardEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GuardEnum TIMER_WITHIN
public static final GuardEnum TIMER_WITHINMAX
public static final GuardEnum WHILE_GUARD
public static GuardEnum[] values()
for (GuardEnum c : GuardEnum.values()) System.out.println(c);
public static GuardEnum 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 String getNamespace()
public String getName()
public Class getClazz()
public static GuardEnum forName(String namespace, String name)
namespace
- - guard namespacename
- - guard name