com.ace.moab.api.triggers
Enum TriggerPeriod

java.lang.Object
  extended by java.lang.Enum<TriggerPeriod>
      extended by com.ace.moab.api.triggers.TriggerPeriod
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TriggerPeriod>

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


Enum Constant Summary
DAY
           
HOUR
           
MONTH
           
NONE
           
WEEK
           
 
Method Summary
static TriggerPeriod parseString(java.lang.String string)
          Parses a string and converts it into a TriggerPeriod enum value if possible.
static TriggerPeriod valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TriggerPeriod[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONE

public static final TriggerPeriod NONE

HOUR

public static final TriggerPeriod HOUR

DAY

public static final TriggerPeriod DAY

WEEK

public static final TriggerPeriod WEEK

MONTH

public static final TriggerPeriod MONTH
Method Detail

values

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

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

valueOf

public static TriggerPeriod 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

parseString

public static TriggerPeriod parseString(java.lang.String string)
                                 throws java.lang.IllegalArgumentException
Parses a string and converts it into a TriggerPeriod enum value if possible.

Parameters:
string - the string to be parsed.
Returns:
the corresponding TriggerPeriod enum value.
Throws:
java.lang.IllegalArgumentException - if the String cannot be parsed.


Copyright © 2001-2009 Cluster Resources, Inc. All Rights Reserved.