org.jclouds.cloudservers.domain
Enum WeeklyBackup

java.lang.Object
  extended by java.lang.Enum<WeeklyBackup>
      extended by org.jclouds.cloudservers.domain.WeeklyBackup
All Implemented Interfaces:
Serializable, Comparable<WeeklyBackup>

public enum WeeklyBackup
extends Enum<WeeklyBackup>


Enum Constant Summary
DISABLED
           
FRIDAY
           
MONDAY
           
SATURDAY
           
SUNDAY
           
THURSDAY
           
TUESDAY
           
UNRECOGNIZED
           
WEDNESDAY
           
 
Method Summary
static WeeklyBackup fromValue(String v)
           
 String value()
           
static WeeklyBackup valueOf(String name)
          Returns the enum constant of this type with the specified name.
static WeeklyBackup[] 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

DISABLED

public static final WeeklyBackup DISABLED

SUNDAY

public static final WeeklyBackup SUNDAY

MONDAY

public static final WeeklyBackup MONDAY

TUESDAY

public static final WeeklyBackup TUESDAY

WEDNESDAY

public static final WeeklyBackup WEDNESDAY

THURSDAY

public static final WeeklyBackup THURSDAY

FRIDAY

public static final WeeklyBackup FRIDAY

SATURDAY

public static final WeeklyBackup SATURDAY

UNRECOGNIZED

public static final WeeklyBackup UNRECOGNIZED
Method Detail

values

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

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

valueOf

public static WeeklyBackup valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

value

public String value()

fromValue

public static WeeklyBackup fromValue(String v)


Copyright © 2009-2011 jclouds. All Rights Reserved.