com.ibm.ram.internal.jaxb
Enum Subscription.Frequency

java.lang.Object
  extended by java.lang.Enum<Subscription.Frequency>
      extended by com.ibm.ram.internal.jaxb.Subscription.Frequency
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Subscription.Frequency>
Enclosing class:
Subscription

public static enum Subscription.Frequency
extends java.lang.Enum<Subscription.Frequency>


Enum Constant Summary
DAILY
           
DEFAULT
           
IMMEDIATE
           
MONTHLY
           
WEEKLY
           
 
Method Summary
static Subscription.Frequency fromValue(java.lang.String v)
           
 java.lang.String value()
           
static Subscription.Frequency valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Subscription.Frequency[] 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

IMMEDIATE

public static final Subscription.Frequency IMMEDIATE

DAILY

public static final Subscription.Frequency DAILY

WEEKLY

public static final Subscription.Frequency WEEKLY

MONTHLY

public static final Subscription.Frequency MONTHLY

DEFAULT

public static final Subscription.Frequency DEFAULT
Method Detail

values

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

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

valueOf

public static Subscription.Frequency 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

value

public java.lang.String value()

fromValue

public static Subscription.Frequency fromValue(java.lang.String v)