public enum ReturnResult extends Enum<ReturnResult>
Enum Constant and Description |
---|
OK
The conversation finished successful.
|
REJECTED
The conversation finished with an error.
|
SEND_CHALLENGE
The conversation continues.
|
Modifier and Type | Method and Description |
---|---|
static ReturnResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReturnResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReturnResult OK
public static final ReturnResult REJECTED
public static final ReturnResult SEND_CHALLENGE
public static ReturnResult[] values()
for (ReturnResult c : ReturnResult.values()) System.out.println(c);
public static ReturnResult 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 nullCopyright © 2022 KOBIL Systems GmbH. All rights reserved.