Enum CasState

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<CasState>

    public enum CasState
    extends java.lang.Enum<CasState>
    states the CAS can be in
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private CasState()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      (package private) static boolean isSameThread​(java.lang.Thread thread)  
      (package private) static java.lang.invoke.MethodHandle produce_one_thread_access_test​(java.lang.Thread thread)  
      (package private) static boolean return_false()  
      (package private) static boolean return_true()  
      static CasState valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static CasState[] 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

      • UIMA_AS_WAIT_4_RESPONSE

        public static final CasState UIMA_AS_WAIT_4_RESPONSE
      • READ_ONLY

        public static final CasState READ_ONLY
      • NO_ACCESS

        public static final CasState NO_ACCESS
    • Constructor Detail

      • CasState

        private CasState()
    • Method Detail

      • values

        public static CasState[] 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 (CasState c : CasState.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CasState 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
      • return_false

        static final boolean return_false()
      • return_true

        static final boolean return_true()
      • isSameThread

        static final boolean isSameThread​(java.lang.Thread thread)
        Parameters:
        thread - the thread which is permitted to update the CAS
        Returns:
        true if the thread == current thread, false otherwise to block access
      • produce_one_thread_access_test

        static final java.lang.invoke.MethodHandle produce_one_thread_access_test​(java.lang.Thread thread)