org.jclouds.openstack.glance.v1_0.domain
Enum StoreType

java.lang.Object
  extended by java.lang.Enum<StoreType>
      extended by org.jclouds.openstack.glance.v1_0.domain.StoreType
All Implemented Interfaces:
Serializable, Comparable<StoreType>

public enum StoreType
extends Enum<StoreType>

Backing store types for glance images

See Also:

Enum Constant Summary
FILE
          Filesystem store
HTTP
          HTTP (read-only) store
RBD
          RADOS (Reliable Autonomic Distributed Object Store) Block Device store
S3
          S3 store
SWIFT
          OpenStack swift store
 
Method Summary
 String toString()
           
 String value()
           
static StoreType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static StoreType[] 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

FILE

public static final StoreType FILE
Filesystem store


S3

public static final StoreType S3
S3 store


SWIFT

public static final StoreType SWIFT
OpenStack swift store


RBD

public static final StoreType RBD
RADOS (Reliable Autonomic Distributed Object Store) Block Device store


HTTP

public static final StoreType HTTP
HTTP (read-only) store

Method Detail

values

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

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

valueOf

public static StoreType 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()

toString

public String toString()
Overrides:
toString in class Enum<StoreType>


Copyright © 2009-2014 The Apache Software Foundation. All Rights Reserved.