public enum InterfaceType extends java.lang.Enum<InterfaceType>
Enum Constant and Description |
---|
BUSINESS_LOCAL |
BUSINESS_LOCAL_HOME |
BUSINESS_REMOTE |
BUSINESS_REMOTE_HOME |
EJB_HOME |
EJB_LOCAL |
EJB_LOCAL_HOME |
EJB_OBJECT |
Modifier and Type | Method and Description |
---|---|
static InterfaceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InterfaceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterfaceType EJB_HOME
public static final InterfaceType EJB_OBJECT
public static final InterfaceType EJB_LOCAL_HOME
public static final InterfaceType EJB_LOCAL
public static final InterfaceType BUSINESS_LOCAL
public static final InterfaceType BUSINESS_LOCAL_HOME
public static final InterfaceType BUSINESS_REMOTE
public static final InterfaceType BUSINESS_REMOTE_HOME
public static InterfaceType[] values()
for (InterfaceType c : InterfaceType.values()) System.out.println(c);
public static InterfaceType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null