Package org.teiid.translator.hive
Enum HivePlugin.Event
- java.lang.Object
-
- java.lang.Enum<HivePlugin.Event>
-
- org.teiid.translator.hive.HivePlugin.Event
-
- All Implemented Interfaces:
Serializable,Comparable<HivePlugin.Event>,org.teiid.core.BundleUtil.Event
- Enclosing class:
- HivePlugin
public static enum HivePlugin.Event extends Enum<HivePlugin.Event> implements org.teiid.core.BundleUtil.Event
-
-
Enum Constant Summary
Enum Constants Enum Constant Description TEIID24000
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HivePlugin.EventvalueOf(String name)Returns the enum constant of this type with the specified name.static HivePlugin.Event[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TEIID24000
public static final HivePlugin.Event TEIID24000
-
-
Method Detail
-
values
public static HivePlugin.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 (HivePlugin.Event c : HivePlugin.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 HivePlugin.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
-
-