org.apache.whirr
Enum ClusterSpec.Property

java.lang.Object
  extended by java.lang.Enum<ClusterSpec.Property>
      extended by org.apache.whirr.ClusterSpec.Property
All Implemented Interfaces:
Serializable, Comparable<ClusterSpec.Property>
Enclosing class:
ClusterSpec

public static enum ClusterSpec.Property
extends Enum<ClusterSpec.Property>


Enum Constant Summary
BLOBSTORE_CREDENTIAL
           
BLOBSTORE_IDENTITY
           
BLOBSTORE_LOCATION_ID
           
BLOBSTORE_PROVIDER
           
CLIENT_CIDRS
           
CLUSTER_NAME
           
CLUSTER_USER
           
CREDENTIAL
           
HARDWARE_ID
           
HARDWARE_MIN_RAM
           
IDENTITY
           
IMAGE_ID
           
INSTANCE_TEMPLATES
           
INSTANCE_TEMPLATES_MAX_PERCENT_FAILURES
           
INSTANCE_TEMPLATES_MINIMUM_NUMBER_OF_INSTANCES
           
LOCATION_ID
           
LOGIN_USER
           
MAX_STARTUP_RETRIES
           
PRIVATE_KEY_FILE
           
PROVIDER
           
PUBLIC_KEY_FILE
           
RUN_URL_BASE
           
SERVICE_NAME
           
STATE_STORE
           
STATE_STORE_BLOB
           
STATE_STORE_CONTAINER
           
VERSION
           
 
Method Summary
 String getConfigName()
           
 String getDescription()
           
 String getSimpleName()
           
 Class<?> getType()
           
 boolean hasMultipleArguments()
           
static ClusterSpec.Property valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ClusterSpec.Property[] 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

CLUSTER_NAME

public static final ClusterSpec.Property CLUSTER_NAME

SERVICE_NAME

public static final ClusterSpec.Property SERVICE_NAME

LOGIN_USER

public static final ClusterSpec.Property LOGIN_USER

CLUSTER_USER

public static final ClusterSpec.Property CLUSTER_USER

INSTANCE_TEMPLATES

public static final ClusterSpec.Property INSTANCE_TEMPLATES

INSTANCE_TEMPLATES_MAX_PERCENT_FAILURES

public static final ClusterSpec.Property INSTANCE_TEMPLATES_MAX_PERCENT_FAILURES

INSTANCE_TEMPLATES_MINIMUM_NUMBER_OF_INSTANCES

public static final ClusterSpec.Property INSTANCE_TEMPLATES_MINIMUM_NUMBER_OF_INSTANCES

MAX_STARTUP_RETRIES

public static final ClusterSpec.Property MAX_STARTUP_RETRIES

PROVIDER

public static final ClusterSpec.Property PROVIDER

CREDENTIAL

public static final ClusterSpec.Property CREDENTIAL

IDENTITY

public static final ClusterSpec.Property IDENTITY

PUBLIC_KEY_FILE

public static final ClusterSpec.Property PUBLIC_KEY_FILE

PRIVATE_KEY_FILE

public static final ClusterSpec.Property PRIVATE_KEY_FILE

BLOBSTORE_PROVIDER

public static final ClusterSpec.Property BLOBSTORE_PROVIDER

BLOBSTORE_IDENTITY

public static final ClusterSpec.Property BLOBSTORE_IDENTITY

BLOBSTORE_CREDENTIAL

public static final ClusterSpec.Property BLOBSTORE_CREDENTIAL

BLOBSTORE_LOCATION_ID

public static final ClusterSpec.Property BLOBSTORE_LOCATION_ID

STATE_STORE

public static final ClusterSpec.Property STATE_STORE

STATE_STORE_CONTAINER

public static final ClusterSpec.Property STATE_STORE_CONTAINER

STATE_STORE_BLOB

public static final ClusterSpec.Property STATE_STORE_BLOB

IMAGE_ID

public static final ClusterSpec.Property IMAGE_ID

HARDWARE_ID

public static final ClusterSpec.Property HARDWARE_ID

HARDWARE_MIN_RAM

public static final ClusterSpec.Property HARDWARE_MIN_RAM

LOCATION_ID

public static final ClusterSpec.Property LOCATION_ID

CLIENT_CIDRS

public static final ClusterSpec.Property CLIENT_CIDRS

VERSION

public static final ClusterSpec.Property VERSION

RUN_URL_BASE

public static final ClusterSpec.Property RUN_URL_BASE
Method Detail

values

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

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

valueOf

public static ClusterSpec.Property 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

getSimpleName

public String getSimpleName()

getConfigName

public String getConfigName()

getType

public Class<?> getType()

hasMultipleArguments

public boolean hasMultipleArguments()

getDescription

public String getDescription()


Copyright © 2010-2011 The Apache Software Foundation. All Rights Reserved.