public enum InterfaceType extends 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(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 1999-2014 The Apache Software Foundation. All Rights Reserved.