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