public enum OperationPropertyType extends java.lang.Enum<OperationPropertyType>
Enum Constant and Description |
---|
INBOUND |
NOTIFY |
OUTBOUND |
REGULAR |
REQUEST |
RESPONSE |
Modifier and Type | Method and Description |
---|---|
static OperationPropertyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OperationPropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationPropertyType REGULAR
public static final OperationPropertyType REQUEST
public static final OperationPropertyType RESPONSE
public static final OperationPropertyType NOTIFY
public static final OperationPropertyType INBOUND
public static final OperationPropertyType OUTBOUND
public static OperationPropertyType[] values()
for (OperationPropertyType c : OperationPropertyType.values()) System.out.println(c);
public static OperationPropertyType 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