org.jclouds.cloudstack.domain
Enum Capacity.Type

java.lang.Object
  extended by java.lang.Enum<Capacity.Type>
      extended by org.jclouds.cloudstack.domain.Capacity.Type
All Implemented Interfaces:
Serializable, Comparable<Capacity.Type>
Enclosing class:
Capacity

public static enum Capacity.Type
extends Enum<Capacity.Type>


Enum Constant Summary
CPU_ALLOCATED_MHZ
           
DIRECT_ATTACHED_PUBLIC_IP_ADDRESSES
           
LOCAL_STORAGE_USED_BYTES
           
MEMORY_ALLOCATED_BYTES
           
PRIMARY_STORAGE_ALLOCATED_BYTES
           
PRIMARY_STORAGE_USED_BYTES
           
PRIVATE_IP_ADDRESSES
           
PUBLIC_IP_ADDRESSES
           
SECONDARY_STORAGE_USED_BYTES
           
UNRECOGNIZED
           
VLANS
           
 
Method Summary
static Capacity.Type fromValue(String type)
           
 String toString()
           
static Capacity.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Capacity.Type[] 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

MEMORY_ALLOCATED_BYTES

public static final Capacity.Type MEMORY_ALLOCATED_BYTES

CPU_ALLOCATED_MHZ

public static final Capacity.Type CPU_ALLOCATED_MHZ

PRIMARY_STORAGE_USED_BYTES

public static final Capacity.Type PRIMARY_STORAGE_USED_BYTES

PRIMARY_STORAGE_ALLOCATED_BYTES

public static final Capacity.Type PRIMARY_STORAGE_ALLOCATED_BYTES

PUBLIC_IP_ADDRESSES

public static final Capacity.Type PUBLIC_IP_ADDRESSES

PRIVATE_IP_ADDRESSES

public static final Capacity.Type PRIVATE_IP_ADDRESSES

SECONDARY_STORAGE_USED_BYTES

public static final Capacity.Type SECONDARY_STORAGE_USED_BYTES

VLANS

public static final Capacity.Type VLANS

DIRECT_ATTACHED_PUBLIC_IP_ADDRESSES

public static final Capacity.Type DIRECT_ATTACHED_PUBLIC_IP_ADDRESSES

LOCAL_STORAGE_USED_BYTES

public static final Capacity.Type LOCAL_STORAGE_USED_BYTES

UNRECOGNIZED

public static final Capacity.Type UNRECOGNIZED
Method Detail

values

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

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

valueOf

public static Capacity.Type 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

toString

public String toString()
Overrides:
toString in class Enum<Capacity.Type>

fromValue

public static Capacity.Type fromValue(String type)


Copyright © 2009-2012 jclouds. All Rights Reserved.