@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum AttributeName extends Enum<AttributeName>
| Enum Constant and Description |
|---|
DIAGNOSIS |
FUTURE |
HYPOTHETICAL |
LOW_CONFIDENCE |
NEGATION |
PAST_HISTORY |
PERTAINS_TO_FAMILY |
SIGN |
SYMPTOM |
| Modifier and Type | Method and Description |
|---|---|
static AttributeName |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static AttributeName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeName SIGN
public static final AttributeName SYMPTOM
public static final AttributeName DIAGNOSIS
public static final AttributeName NEGATION
public static final AttributeName PERTAINS_TO_FAMILY
public static final AttributeName HYPOTHETICAL
public static final AttributeName LOW_CONFIDENCE
public static final AttributeName PAST_HISTORY
public static final AttributeName FUTURE
public static AttributeName[] values()
for (AttributeName c : AttributeName.values()) System.out.println(c);
public static AttributeName 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 toString()
toString in class Enum<AttributeName>public static AttributeName fromValue(String value)
value - real valueIllegalArgumentException - If the specified value does not map to one of the known values in this enum.