org.opengts.db
Enum RuleFactory.NotifyAction

java.lang.Object
  extended by java.lang.Enum<RuleFactory.NotifyAction>
      extended by org.opengts.db.RuleFactory.NotifyAction
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RuleFactory.NotifyAction>, EnumTools.BitMask, EnumTools.LongValue, EnumTools.StringLocale
Enclosing interface:
RuleFactory

public static enum RuleFactory.NotifyAction
extends java.lang.Enum<RuleFactory.NotifyAction>
implements EnumTools.BitMask, EnumTools.StringLocale


Enum Constant Summary
NONE
           
NOTIFY_ACCT
           
NOTIFY_DEV
           
NOTIFY_RULE
           
SAVE_LAST
           
VIA_EMAIL
           
VIA_LISTENER
           
VIA_QUEUE
           
 
Method Summary
 long getLongValue()
           
 java.lang.String toString()
           
 java.lang.String toString(java.util.Locale loc)
           
static RuleFactory.NotifyAction valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RuleFactory.NotifyAction[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONE

public static final RuleFactory.NotifyAction NONE

NOTIFY_ACCT

public static final RuleFactory.NotifyAction NOTIFY_ACCT

NOTIFY_DEV

public static final RuleFactory.NotifyAction NOTIFY_DEV

NOTIFY_RULE

public static final RuleFactory.NotifyAction NOTIFY_RULE

VIA_EMAIL

public static final RuleFactory.NotifyAction VIA_EMAIL

VIA_QUEUE

public static final RuleFactory.NotifyAction VIA_QUEUE

VIA_LISTENER

public static final RuleFactory.NotifyAction VIA_LISTENER

SAVE_LAST

public static final RuleFactory.NotifyAction SAVE_LAST
Method Detail

values

public static RuleFactory.NotifyAction[] 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 (RuleFactory.NotifyAction c : RuleFactory.NotifyAction.values())
    System.out.println(c);

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

valueOf

public static RuleFactory.NotifyAction 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

getLongValue

public long getLongValue()
Specified by:
getLongValue in interface EnumTools.LongValue

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<RuleFactory.NotifyAction>

toString

public java.lang.String toString(java.util.Locale loc)
Specified by:
toString in interface EnumTools.StringLocale