Package org.jboss.windup.testutil.html
Enum TestEJBReportUtil.EJBType
- java.lang.Object
-
- java.lang.Enum<TestEJBReportUtil.EJBType>
-
- org.jboss.windup.testutil.html.TestEJBReportUtil.EJBType
-
- All Implemented Interfaces:
Serializable,Comparable<TestEJBReportUtil.EJBType>
- Enclosing class:
- TestEJBReportUtil
public static enum TestEJBReportUtil.EJBType extends Enum<TestEJBReportUtil.EJBType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TestEJBReportUtil.EJBTypevalueOf(String name)Returns the enum constant of this type with the specified name.static TestEJBReportUtil.EJBType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MDB
public static final TestEJBReportUtil.EJBType MDB
-
STATELESS
public static final TestEJBReportUtil.EJBType STATELESS
-
STATEFUL
public static final TestEJBReportUtil.EJBType STATEFUL
-
ENTITY
public static final TestEJBReportUtil.EJBType ENTITY
-
-
Method Detail
-
values
public static TestEJBReportUtil.EJBType[] 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 (TestEJBReportUtil.EJBType c : TestEJBReportUtil.EJBType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TestEJBReportUtil.EJBType 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
-
-