Enum Constant and Description |
---|
TIMER_WITHIN
Timer guard.
|
TIMER_WITHINMAX |
WHILE_GUARD |
Modifier and Type | Method and Description |
---|---|
static GuardEnum |
forName(java.lang.String namespace,
java.lang.String name)
Returns the enum for the given namespace and name.
|
java.lang.Class |
getClazz()
Gets the implementation class.
|
java.lang.String |
getName()
Returns name.
|
java.lang.String |
getNamespace()
Returns the namespace name.
|
static boolean |
isWhile(java.lang.String namespace,
java.lang.String name) |
static GuardEnum |
valueOf(java.lang.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(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getNamespace()
public java.lang.String getName()
public java.lang.Class getClazz()
public static GuardEnum forName(java.lang.String namespace, java.lang.String name)
namespace
- - guard namespacename
- - guard namepublic static boolean isWhile(java.lang.String namespace, java.lang.String name)