Package org.jboss.as.ejb3.subsystem
Enum EJB3SubsystemNamespace
- java.lang.Object
-
- java.lang.Enum<EJB3SubsystemNamespace>
-
- org.jboss.as.ejb3.subsystem.EJB3SubsystemNamespace
-
- All Implemented Interfaces:
Serializable,Comparable<EJB3SubsystemNamespace>
public enum EJB3SubsystemNamespace extends Enum<EJB3SubsystemNamespace>
An enumeration of the supported EJB3 subsystem namespaces- Author:
- Jaikiran Pai
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EJB3SubsystemNamespaceforUri(String uri)StringgetUriString()Get the URI of this namespace.static EJB3SubsystemNamespacevalueOf(String name)Returns the enum constant of this type with the specified name.static EJB3SubsystemNamespace[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final EJB3SubsystemNamespace UNKNOWN
-
EJB3_1_0
public static final EJB3SubsystemNamespace EJB3_1_0
-
EJB3_1_1
public static final EJB3SubsystemNamespace EJB3_1_1
-
EJB3_1_2
public static final EJB3SubsystemNamespace EJB3_1_2
-
EJB3_1_3
public static final EJB3SubsystemNamespace EJB3_1_3
-
EJB3_1_4
public static final EJB3SubsystemNamespace EJB3_1_4
-
EJB3_1_5
public static final EJB3SubsystemNamespace EJB3_1_5
-
EJB3_2_0
public static final EJB3SubsystemNamespace EJB3_2_0
-
EJB3_3_0
public static final EJB3SubsystemNamespace EJB3_3_0
-
EJB3_4_0
public static final EJB3SubsystemNamespace EJB3_4_0
-
EJB3_5_0
public static final EJB3SubsystemNamespace EJB3_5_0
-
EJB3_6_0
public static final EJB3SubsystemNamespace EJB3_6_0
-
EJB3_7_0
public static final EJB3SubsystemNamespace EJB3_7_0
-
EJB3_8_0
public static final EJB3SubsystemNamespace EJB3_8_0
-
EJB3_9_0
public static final EJB3SubsystemNamespace EJB3_9_0
-
EJB3_10_0
public static final EJB3SubsystemNamespace EJB3_10_0
-
-
Method Detail
-
values
public static EJB3SubsystemNamespace[] 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 (EJB3SubsystemNamespace c : EJB3SubsystemNamespace.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EJB3SubsystemNamespace 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
-
getUriString
public String getUriString()
Get the URI of this namespace.- Returns:
- the URI
-
forUri
public static EJB3SubsystemNamespace forUri(String uri)
-
-