| 
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||
java.lang.Objectjava.lang.Enum<OTAPayloadStdAttributes.TransactionStatusCode>
org.ota.shared.OTAPayloadStdAttributes.TransactionStatusCode
public static enum OTAPayloadStdAttributes.TransactionStatusCode
Schema fragment(s) for this class:
 <xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema">
   <xs:restriction base="xs:string">
     <xs:enumeration value="Start"/>
     <xs:enumeration value="End"/>
     <xs:enumeration value="Rollback"/>
     <xs:enumeration value="InSeries"/>
     <xs:enumeration value="Continuation"/>
     <xs:enumeration value="Subsequent"/>
   </xs:restriction>
 </xs:simpleType>
 
| Enum Constant Summary | |
|---|---|
CONTINUATION
Specifies that this is a followup request asking for more of what was requested in the previous request.  | 
|
END
This is the last message within a transaction.  | 
|
IN_SERIES
This is any message that is not the first or last message within a transaction.  | 
|
ROLLBACK
This indicates that all messages within the current transaction must be ignored.  | 
|
START
This is the first message within a transaction.  | 
|
SUBSEQUENT
This request message is a subsequent request based on the previous message sent in this transaction.  | 
|
| Method Summary | |
|---|---|
static OTAPayloadStdAttributes.TransactionStatusCode | 
convert(java.lang.String value)
 | 
 java.lang.String | 
toString()
 | 
static OTAPayloadStdAttributes.TransactionStatusCode | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.  | 
static OTAPayloadStdAttributes.TransactionStatusCode[] | 
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 | 
|---|
public static final OTAPayloadStdAttributes.TransactionStatusCode START
public static final OTAPayloadStdAttributes.TransactionStatusCode END
public static final OTAPayloadStdAttributes.TransactionStatusCode ROLLBACK
public static final OTAPayloadStdAttributes.TransactionStatusCode IN_SERIES
public static final OTAPayloadStdAttributes.TransactionStatusCode CONTINUATION
public static final OTAPayloadStdAttributes.TransactionStatusCode SUBSEQUENT
| Method Detail | 
|---|
public static OTAPayloadStdAttributes.TransactionStatusCode[] values()
for (OTAPayloadStdAttributes.TransactionStatusCode c : OTAPayloadStdAttributes.TransactionStatusCode.values()) System.out.println(c);
public static OTAPayloadStdAttributes.TransactionStatusCode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<OTAPayloadStdAttributes.TransactionStatusCode>public static OTAPayloadStdAttributes.TransactionStatusCode convert(java.lang.String value)
  | 
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||