Package org.teiid.metadata.index
Enum RuntimeMetadataPlugin.Event
- java.lang.Object
-
- java.lang.Enum<RuntimeMetadataPlugin.Event>
-
- org.teiid.metadata.index.RuntimeMetadataPlugin.Event
-
- All Implemented Interfaces:
Serializable
,Comparable<RuntimeMetadataPlugin.Event>
,BundleUtil.Event
- Enclosing class:
- RuntimeMetadataPlugin
public static enum RuntimeMetadataPlugin.Event extends Enum<RuntimeMetadataPlugin.Event> implements BundleUtil.Event
-
-
Enum Constant Summary
Enum Constants Enum Constant Description TEIID80000
TEIID80002
TEIID80003
TEIID80004
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RuntimeMetadataPlugin.Event
valueOf(String name)
Returns the enum constant of this type with the specified name.static RuntimeMetadataPlugin.Event[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TEIID80000
public static final RuntimeMetadataPlugin.Event TEIID80000
-
TEIID80002
public static final RuntimeMetadataPlugin.Event TEIID80002
-
TEIID80003
public static final RuntimeMetadataPlugin.Event TEIID80003
-
TEIID80004
public static final RuntimeMetadataPlugin.Event TEIID80004
-
-
Method Detail
-
values
public static RuntimeMetadataPlugin.Event[] 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 (RuntimeMetadataPlugin.Event c : RuntimeMetadataPlugin.Event.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RuntimeMetadataPlugin.Event 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
-
-