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