Package org.apache.uima.cas.impl
Enum CasState
- java.lang.Object
-
- java.lang.Enum<CasState>
-
- org.apache.uima.cas.impl.CasState
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NO_ACCESSREAD_ONLYUIMA_AS_WAIT_4_RESPONSE
-
Constructor Summary
Constructors Modifier Constructor Description privateCasState()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description (package private) static booleanisSameThread(java.lang.Thread thread)(package private) static java.lang.invoke.MethodHandleproduce_one_thread_access_test(java.lang.Thread thread)(package private) static booleanreturn_false()(package private) static booleanreturn_true()static CasStatevalueOf(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.
-
-
-
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 namejava.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)
-
-