com.espertech.esper.pattern.guard
Enum GuardEnum

java.lang.Object
  extended by java.lang.Enum<GuardEnum>
      extended by com.espertech.esper.pattern.guard.GuardEnum
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<GuardEnum>

public enum GuardEnum
extends java.lang.Enum<GuardEnum>

Enum for all build-in guards.


Enum Constant Summary
TIMER_WITHIN
          Timer guard.
TIMER_WITHINMAX
           
WHILE_GUARD
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TIMER_WITHIN

public static final GuardEnum TIMER_WITHIN
Timer guard.


TIMER_WITHINMAX

public static final GuardEnum TIMER_WITHINMAX

WHILE_GUARD

public static final GuardEnum WHILE_GUARD
Method Detail

values

public static GuardEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (GuardEnum c : GuardEnum.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static GuardEnum valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getNamespace

public java.lang.String getNamespace()
Returns the namespace name.

Returns:
namespace name

getName

public java.lang.String getName()
Returns name.

Returns:
short name

getClazz

public java.lang.Class getClazz()
Gets the implementation class.

Returns:
implementation class

forName

public static GuardEnum forName(java.lang.String namespace,
                                java.lang.String name)
Returns the enum for the given namespace and name.

Parameters:
namespace - - guard namespace
name - - guard name
Returns:
enum

isWhile

public static boolean isWhile(java.lang.String namespace,
                              java.lang.String name)

© 2006-2015 EsperTech Inc.
All rights reserved.
Visit us at espertech.com