public enum UnidentifiedReason extends Enum<UnidentifiedReason>
Enum Constant and Description |
---|
MULTIPLE_MATCHES |
NOT_FOUND |
Modifier and Type | Method and Description |
---|---|
static UnidentifiedReason |
fromValue(String v) |
String |
value() |
static UnidentifiedReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnidentifiedReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnidentifiedReason MULTIPLE_MATCHES
public static final UnidentifiedReason NOT_FOUND
public static UnidentifiedReason[] values()
for (UnidentifiedReason c : UnidentifiedReason.values()) System.out.println(c);
public static UnidentifiedReason 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 nullpublic String value()
public static UnidentifiedReason fromValue(String v)
Copyright © 2017 Digipost. All rights reserved.