public enum InteractionType extends Enum<InteractionType>
| Enum Constant and Description |
|---|
error |
missed_opportunity |
none |
rectification |
score |
success |
| Modifier and Type | Method and Description |
|---|---|
static InteractionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InteractionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InteractionType success
public static final InteractionType error
public static final InteractionType rectification
public static final InteractionType missed_opportunity
public static final InteractionType score
public static final InteractionType none
public static InteractionType[] values()
for (InteractionType c : InteractionType.values()) System.out.println(c);
public static InteractionType 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 null