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