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