public enum InteractionInvocationMethod extends Enum<InteractionInvocationMethod>
InteractionContext was invoked by the user, or is
programmatic.| Enum Constant and Description |
|---|
BY_USER |
PROGRAMMATIC |
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription() |
static InteractionInvocationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InteractionInvocationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InteractionInvocationMethod BY_USER
public static final InteractionInvocationMethod PROGRAMMATIC
public static InteractionInvocationMethod[] values()
for (InteractionInvocationMethod c : InteractionInvocationMethod.values()) System.out.println(c);
public static InteractionInvocationMethod 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 String getDescription()
Copyright © 2010–2014 The Apache Software Foundation. All rights reserved.