public enum MethodIntf extends java.lang.Enum<MethodIntf>
Java class for method-intfType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="method-intfType"> <simpleContent> <restriction base="<http://java.sun.com/xml/ns/javaee>string"> </restriction> </simpleContent> </complexType>
Enum Constant and Description |
---|
HOME |
LOCAL |
LOCALHOME |
MESSAGEENDPOINT |
REMOTE |
SERVICEENDPOINT |
TIMER |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static MethodIntf |
valueOf(java.lang.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 HOME
public static final MethodIntf REMOTE
public static final MethodIntf LOCALHOME
public static final MethodIntf LOCAL
public static final MethodIntf SERVICEENDPOINT
public static final MethodIntf TIMER
public static final MethodIntf MESSAGEENDPOINT
public static MethodIntf[] values()
for (MethodIntf c : MethodIntf.values()) System.out.println(c);
public static MethodIntf 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<MethodIntf>