public enum RegisterErrorCause extends Enum<RegisterErrorCause>
Enum Constant and Description |
---|
GENERATE_CANCELLED
キャンセルされたことを示します。
|
INVALID_TOKEN
トークンが無効であることを示します。
|
IO_EXCEPTION_OCCURRED
I/Oエラーが発生したことを示します。
|
VERIFICATION_CODE_REQUEST_FAILED
ユーザ検証コードの要求に失敗したことを示します。
|
VERIFICATION_FAILED
コードの検証に失敗したことを示します。
|
Modifier and Type | Method and Description |
---|---|
static RegisterErrorCause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegisterErrorCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegisterErrorCause IO_EXCEPTION_OCCURRED
public static final RegisterErrorCause INVALID_TOKEN
public static final RegisterErrorCause GENERATE_CANCELLED
public static final RegisterErrorCause VERIFICATION_CODE_REQUEST_FAILED
public static final RegisterErrorCause VERIFICATION_FAILED
public static RegisterErrorCause[] values()
for (RegisterErrorCause c : RegisterErrorCause.values()) System.out.println(c);
public static RegisterErrorCause 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 © 2023. All rights reserved.