org.jclouds.cloudservers.domain
Enum DailyBackup

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

public enum DailyBackup
extends Enum<DailyBackup>


Enum Constant Summary
DISABLED
           
H_0000_0200
           
H_0200_0400
           
H_0400_0600
           
H_0600_0800
           
H_0800_1000
           
H_1000_1200
           
H_1200_1400
           
H_1400_1600
           
H_1600_1800
           
H_1800_2000
           
H_2000_2200
           
H_2200_0000
           
UNRECOGNIZED
           
 
Method Summary
static DailyBackup fromValue(String v)
           
 String value()
           
static DailyBackup valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DailyBackup[] 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 DailyBackup DISABLED

H_0000_0200

public static final DailyBackup H_0000_0200

H_0200_0400

public static final DailyBackup H_0200_0400

H_0400_0600

public static final DailyBackup H_0400_0600

H_0600_0800

public static final DailyBackup H_0600_0800

H_0800_1000

public static final DailyBackup H_0800_1000

H_1000_1200

public static final DailyBackup H_1000_1200

H_1200_1400

public static final DailyBackup H_1200_1400

H_1400_1600

public static final DailyBackup H_1400_1600

H_1600_1800

public static final DailyBackup H_1600_1800

H_1800_2000

public static final DailyBackup H_1800_2000

H_2000_2200

public static final DailyBackup H_2000_2200

H_2200_0000

public static final DailyBackup H_2200_0000

UNRECOGNIZED

public static final DailyBackup UNRECOGNIZED
Method Detail

values

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

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

valueOf

public static DailyBackup 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 DailyBackup fromValue(String v)


Copyright © 2009-2012 jclouds. All Rights Reserved.