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