Package org.teiid.query.tempdata
Enum GlobalTableStoreImpl.MatState
- java.lang.Object
-
- java.lang.Enum<GlobalTableStoreImpl.MatState>
-
- org.teiid.query.tempdata.GlobalTableStoreImpl.MatState
-
- All Implemented Interfaces:
Serializable
,Comparable<GlobalTableStoreImpl.MatState>
- Enclosing class:
- GlobalTableStoreImpl
public static enum GlobalTableStoreImpl.MatState extends Enum<GlobalTableStoreImpl.MatState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FAILED_LOAD
LOADED
LOADING
NEEDS_LOADING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GlobalTableStoreImpl.MatState
valueOf(String name)
Returns the enum constant of this type with the specified name.static GlobalTableStoreImpl.MatState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEEDS_LOADING
public static final GlobalTableStoreImpl.MatState NEEDS_LOADING
-
LOADING
public static final GlobalTableStoreImpl.MatState LOADING
-
FAILED_LOAD
public static final GlobalTableStoreImpl.MatState FAILED_LOAD
-
LOADED
public static final GlobalTableStoreImpl.MatState LOADED
-
-
Method Detail
-
values
public static GlobalTableStoreImpl.MatState[] 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 (GlobalTableStoreImpl.MatState c : GlobalTableStoreImpl.MatState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GlobalTableStoreImpl.MatState valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-