public enum LookupErrorCause extends Enum<LookupErrorCause>
| Enum Constant and Description |
|---|
INVALID_QUERY
不正なクエリが指定されたことを示します。
|
| Modifier and Type | Method and Description |
|---|---|
static LookupErrorCause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LookupErrorCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LookupErrorCause INVALID_QUERY
public static LookupErrorCause[] values()
for (LookupErrorCause c : LookupErrorCause.values()) System.out.println(c);
public static LookupErrorCause 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.