public static interface MHawkMethod.MethodType
Modifier and Type | Field and Description |
---|---|
static int |
ACTION
ACTION method affects the system state in some way. |
static int |
ACTION_INFO
ACTION_INFO method affects the system state as well as retrieves information. |
static int |
INFO
INFO method allows retrieval of information. |
static final int INFO
INFO
method allows retrieval of information.
This type of method requires at least one output parameter.static final int ACTION
ACTION
method affects the system state in some way. This type of method
does not return any value; and this should not be defined with any output
parameter.static final int ACTION_INFO
ACTION_INFO
method affects the system state as well as retrieves information. At
least one output parameter is required.