public enum InteractiveMethod extends Enum<InteractiveMethod>
| Modifier and Type | Method and Description |
|---|---|
static InteractiveMethod |
from(String methodName)
Returns the associated
InteractiveMethod object for the provided method name (if there is one). |
String |
toString()
Returns a
String representation of this InteractiveMethod. |
static InteractiveMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InteractiveMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InteractiveMethod CAPTURE
public static final InteractiveMethod CREATE_CONTROLS
public static final InteractiveMethod CREATE_GROUPS
public static final InteractiveMethod CREATE_SCENES
public static final InteractiveMethod DELETE_CONTROLS
public static final InteractiveMethod DELETE_GROUP
public static final InteractiveMethod DELETE_SCENE
public static final InteractiveMethod GET_ACTIVE_PARTICIPANTS
public static final InteractiveMethod GET_ALL_PARTICIPANTS
public static final InteractiveMethod GET_GROUPS
public static final InteractiveMethod GET_MEMORY_STATS
public static final InteractiveMethod GET_SCENES
public static final InteractiveMethod GET_THROTTLE_STATE
public static final InteractiveMethod GET_TIME
public static final InteractiveMethod GIVE_INPUT
public static final InteractiveMethod HELLO
public static final InteractiveMethod ISSUE_MEMORY_WARNING
public static final InteractiveMethod ON_CONTROL_CREATE
public static final InteractiveMethod ON_CONTROL_DELETE
public static final InteractiveMethod ON_CONTROL_UPDATE
public static final InteractiveMethod ON_GROUP_CREATE
public static final InteractiveMethod ON_GROUP_DELETE
public static final InteractiveMethod ON_GROUP_UPDATE
public static final InteractiveMethod ON_PARTICIPANT_JOIN
public static final InteractiveMethod ON_PARTICIPANT_LEAVE
public static final InteractiveMethod ON_PARTICIPANT_UPDATE
public static final InteractiveMethod ON_READY
public static final InteractiveMethod ON_SCENE_CREATE
public static final InteractiveMethod ON_SCENE_DELETE
public static final InteractiveMethod ON_SCENE_UPDATE
public static final InteractiveMethod READY
public static final InteractiveMethod SET_BANDWIDTH_THROTTLE
public static final InteractiveMethod SET_COMPRESSION
public static final InteractiveMethod UPDATE_CONTROLS
public static final InteractiveMethod UPDATE_GROUPS
public static final InteractiveMethod UPDATE_PARTICIPANTS
public static final InteractiveMethod UPDATE_SCENES
public static final InteractiveMethod UNKNOWN
public static InteractiveMethod[] values()
for (InteractiveMethod c : InteractiveMethod.values()) System.out.println(c);
public static InteractiveMethod 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 nullpublic static InteractiveMethod from(String methodName)
InteractiveMethod object for the provided method name (if there is one).methodName - Interactive method nameInteractiveMethod for the provided scheme name. If a match is not found then
null is returnedpublic String toString()
String representation of this InteractiveMethod.toString in class Enum<InteractiveMethod>String representation of this InteractiveMethodCopyright © 2018. All rights reserved.