public enum UpdateFlowState extends java.lang.Enum<UpdateFlowState>
Enum Constant and Description |
---|
CODE_INPUT |
CODE_INPUT_ERROR |
NONE |
PHONE_NUMBER_INPUT |
PHONE_NUMBER_INPUT_ERROR |
SENDING_CODE |
SENT_CODE |
VERIFIED |
VERIFYING_CODE |
Modifier and Type | Method and Description |
---|---|
static UpdateFlowState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UpdateFlowState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateFlowState NONE
public static final UpdateFlowState PHONE_NUMBER_INPUT
public static final UpdateFlowState SENDING_CODE
public static final UpdateFlowState SENT_CODE
public static final UpdateFlowState CODE_INPUT
public static final UpdateFlowState VERIFYING_CODE
public static final UpdateFlowState VERIFIED
public static final UpdateFlowState CODE_INPUT_ERROR
public static final UpdateFlowState PHONE_NUMBER_INPUT_ERROR
public static UpdateFlowState[] values()
for (UpdateFlowState c : UpdateFlowState.values()) System.out.println(c);
public static UpdateFlowState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null