com.xerox.amazonws.sqs2
Enum QueueAttribute

java.lang.Object
  extended by java.lang.Enum<QueueAttribute>
      extended by com.xerox.amazonws.sqs2.QueueAttribute
All Implemented Interfaces:
Serializable, Comparable<QueueAttribute>

public enum QueueAttribute
extends Enum<QueueAttribute>


Enum Constant Summary
ALL
           
APPROXIMATE_NUMBER_OF_MESSAGES
           
APPROXIMATE_NUMBER_OF_MESSAGES_NOT_VISIBLE
           
CREATED_TIMESTAMP
           
LAST_MODIFIED_TIMESTAMP
           
MAXIUMUM_MESSAGE_SIZE
           
MESSAGE_RETENTION_PERIOD
           
POLICY
           
REQUEST_PAYER
           
VISIBILITY_TIMEOUT
           
 
Method Summary
static QueueAttribute valueOf(String name)
          Returns the enum constant of this type with the specified name.
static QueueAttribute[] 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

ALL

public static final QueueAttribute ALL

APPROXIMATE_NUMBER_OF_MESSAGES

public static final QueueAttribute APPROXIMATE_NUMBER_OF_MESSAGES

APPROXIMATE_NUMBER_OF_MESSAGES_NOT_VISIBLE

public static final QueueAttribute APPROXIMATE_NUMBER_OF_MESSAGES_NOT_VISIBLE

CREATED_TIMESTAMP

public static final QueueAttribute CREATED_TIMESTAMP

LAST_MODIFIED_TIMESTAMP

public static final QueueAttribute LAST_MODIFIED_TIMESTAMP

VISIBILITY_TIMEOUT

public static final QueueAttribute VISIBILITY_TIMEOUT

REQUEST_PAYER

public static final QueueAttribute REQUEST_PAYER

MAXIUMUM_MESSAGE_SIZE

public static final QueueAttribute MAXIUMUM_MESSAGE_SIZE

MESSAGE_RETENTION_PERIOD

public static final QueueAttribute MESSAGE_RETENTION_PERIOD

POLICY

public static final QueueAttribute POLICY
Method Detail

values

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

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

valueOf

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