org.apache.camel.component.aws.sdb
Enum SdbOperations

java.lang.Object
  extended by java.lang.Enum<SdbOperations>
      extended by org.apache.camel.component.aws.sdb.SdbOperations
All Implemented Interfaces:
Serializable, Comparable<SdbOperations>

public enum SdbOperations
extends Enum<SdbOperations>


Enum Constant Summary
BatchDeleteAttributes
           
BatchPutAttributes
           
DeleteAttributes
           
DeleteDomain
           
DomainMetadata
           
GetAttributes
           
ListDomains
           
PutAttributes
           
Select
           
 
Method Summary
static SdbOperations valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SdbOperations[] 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

BatchDeleteAttributes

public static final SdbOperations BatchDeleteAttributes

BatchPutAttributes

public static final SdbOperations BatchPutAttributes

DeleteAttributes

public static final SdbOperations DeleteAttributes

DeleteDomain

public static final SdbOperations DeleteDomain

DomainMetadata

public static final SdbOperations DomainMetadata

GetAttributes

public static final SdbOperations GetAttributes

ListDomains

public static final SdbOperations ListDomains

PutAttributes

public static final SdbOperations PutAttributes

Select

public static final SdbOperations Select
Method Detail

values

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

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

valueOf

public static SdbOperations 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


Apache Camel