Package com.iizix.txp

Enum 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 ConstantDescription
      COMPLETED
      Completed either commit or rollback.
      FAILED
      Operation failed.
      NONE
      No or initial state
      OK
      Operation succeeded.
      READ_ONLY
      Operation succeeded but the node can be ignored in the transaction as the work was read only.
      TIMED_OUT
      Timeout waiting for the transaction to advance.
      UNABLE
      Unable to perform the request.
      WORKING
      Ready to do transactional work.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and TypeMethodDescription
      static ITXPNode.StatevalueOf​(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.
      • 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

      • WORKING

        public static final ITXPNode.State WORKING
        Ready to do transactional work.
      • 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