com.amazonaws.mturk.addon
Enum HITProperties.AssignmentField

java.lang.Object
  extended by java.lang.Enum<HITProperties.AssignmentField>
      extended by com.amazonaws.mturk.addon.HITProperties.AssignmentField
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<HITProperties.AssignmentField>
Enclosing class:
HITProperties

public static enum HITProperties.AssignmentField
extends java.lang.Enum<HITProperties.AssignmentField>


Enum Constant Summary
AcceptTime
           
Answers
           
ApprovalTime
           
AssignmentId
           
AutoApprovalTime
           
Deadline
           
RejectFlag
           
RejectionTime
           
RequesterFeedback
           
Status
           
SubmitTime
           
WorkerId
           
 
Method Summary
 java.lang.String getFieldName()
           
static HITProperties.AssignmentField valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static HITProperties.AssignmentField[] 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

AssignmentId

public static final HITProperties.AssignmentField AssignmentId

WorkerId

public static final HITProperties.AssignmentField WorkerId

Status

public static final HITProperties.AssignmentField Status

AcceptTime

public static final HITProperties.AssignmentField AcceptTime

SubmitTime

public static final HITProperties.AssignmentField SubmitTime

AutoApprovalTime

public static final HITProperties.AssignmentField AutoApprovalTime

ApprovalTime

public static final HITProperties.AssignmentField ApprovalTime

RejectionTime

public static final HITProperties.AssignmentField RejectionTime

Deadline

public static final HITProperties.AssignmentField Deadline

RequesterFeedback

public static final HITProperties.AssignmentField RequesterFeedback

RejectFlag

public static final HITProperties.AssignmentField RejectFlag

Answers

public static final HITProperties.AssignmentField Answers
Method Detail

values

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

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

valueOf

public static HITProperties.AssignmentField valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getFieldName

public java.lang.String getFieldName()