public enum MethodIntf extends Enum<MethodIntf>
Enum Constant and Description |
---|
BEAN |
HOME |
LOCAL |
LOCAL_HOME |
MESSAGE_ENDPOINT |
REMOTE |
SERVICE_ENDPOINT |
TIMER |
Modifier and Type | Method and Description |
---|---|
static MethodIntf |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MethodIntf[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MethodIntf BEAN
public static final MethodIntf HOME
public static final MethodIntf REMOTE
public static final MethodIntf LOCAL_HOME
public static final MethodIntf LOCAL
public static final MethodIntf SERVICE_ENDPOINT
public static final MethodIntf TIMER
public static final MethodIntf MESSAGE_ENDPOINT
public static MethodIntf[] values()
for (MethodIntf c : MethodIntf.values()) System.out.println(c);
public static MethodIntf 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 © 2013 JBoss, a division of Red Hat, Inc.. All Rights Reserved.