Package com.iizix.txp
Enum ITXPNode.State
- java.lang.Object
- java.lang.Enum<ITXPNode.State>
- com.iizix.txp.ITXPNode.State
 
 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<ITXPNode.State>
 - Enclosing interface:
- ITXPNode
 - public static enum ITXPNode.State extends java.lang.Enum<ITXPNode.State> State enum for a- ITXPNode.- Author:
- Freggle
 
- Enum Constant Summary- Enum Constants - Enum Constant - Description - COMPLETEDCompleted either commit or rollback.- FAILEDOperation failed.- NONENo or initial state- OKOperation succeeded.- READ_ONLYOperation succeeded but the node can be ignored in the transaction as the work was read only.- TIMED_OUTTimeout waiting for the transaction to advance.- UNABLEUnable to perform the request.- WORKINGReady to do transactional work.
 - Method Summary- All Methods Static Methods Concrete Methods - Modifier and Type - Method - Description - static ITXPNode.State- valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.- static ITXPNode.State[]- values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- Enum Constant Detail- NONE- public static final ITXPNode.State NONE No or initial state
 - WORKING- public static final ITXPNode.State WORKING Ready to do transactional work.
 - OK- public static final ITXPNode.State OK Operation succeeded.
 - FAILED- public static final ITXPNode.State FAILED Operation failed.
 - READ_ONLY- public static final ITXPNode.State READ_ONLY Operation succeeded but the node can be ignored in the transaction as the work was read only.
 - TIMED_OUT- public static final ITXPNode.State TIMED_OUT Timeout waiting for the transaction to advance.
 - UNABLE- public static final ITXPNode.State UNABLE Unable to perform the request.
 - COMPLETED- public static final ITXPNode.State COMPLETED Completed either commit or rollback.
 
 - Method Detail- values- public static ITXPNode.State[] 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 (ITXPNode.State c : ITXPNode.State.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - valueOf- public static ITXPNode.State 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