Enum EntitySubType
- java.lang.Object
-
- java.lang.Enum<EntitySubType>
-
- software.amazon.awssdk.services.comprehendmedical.model.EntitySubType
-
- All Implemented Interfaces:
Serializable,Comparable<EntitySubType>
@Generated("software.amazon.awssdk:codegen") public enum EntitySubType extends Enum<EntitySubType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EntitySubTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<EntitySubType>knownValues()StringtoString()static EntitySubTypevalueOf(String name)Returns the enum constant of this type with the specified name.static EntitySubType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NAME
public static final EntitySubType NAME
-
DX_NAME
public static final EntitySubType DX_NAME
-
DOSAGE
public static final EntitySubType DOSAGE
-
ROUTE_OR_MODE
public static final EntitySubType ROUTE_OR_MODE
-
FORM
public static final EntitySubType FORM
-
FREQUENCY
public static final EntitySubType FREQUENCY
-
DURATION
public static final EntitySubType DURATION
-
GENERIC_NAME
public static final EntitySubType GENERIC_NAME
-
BRAND_NAME
public static final EntitySubType BRAND_NAME
-
STRENGTH
public static final EntitySubType STRENGTH
-
RATE
public static final EntitySubType RATE
-
ACUITY
public static final EntitySubType ACUITY
-
TEST_NAME
public static final EntitySubType TEST_NAME
-
TEST_VALUE
public static final EntitySubType TEST_VALUE
-
TEST_UNITS
public static final EntitySubType TEST_UNITS
-
TEST_UNIT
public static final EntitySubType TEST_UNIT
-
PROCEDURE_NAME
public static final EntitySubType PROCEDURE_NAME
-
TREATMENT_NAME
public static final EntitySubType TREATMENT_NAME
-
DATE
public static final EntitySubType DATE
-
AGE
public static final EntitySubType AGE
-
CONTACT_POINT
public static final EntitySubType CONTACT_POINT
-
PHONE_OR_FAX
public static final EntitySubType PHONE_OR_FAX
-
EMAIL
public static final EntitySubType EMAIL
-
IDENTIFIER
public static final EntitySubType IDENTIFIER
-
ID
public static final EntitySubType ID
-
URL
public static final EntitySubType URL
-
ADDRESS
public static final EntitySubType ADDRESS
-
PROFESSION
public static final EntitySubType PROFESSION
-
SYSTEM_ORGAN_SITE
public static final EntitySubType SYSTEM_ORGAN_SITE
-
DIRECTION
public static final EntitySubType DIRECTION
-
QUALITY
public static final EntitySubType QUALITY
-
QUANTITY
public static final EntitySubType QUANTITY
-
TIME_EXPRESSION
public static final EntitySubType TIME_EXPRESSION
-
TIME_TO_MEDICATION_NAME
public static final EntitySubType TIME_TO_MEDICATION_NAME
-
TIME_TO_DX_NAME
public static final EntitySubType TIME_TO_DX_NAME
-
TIME_TO_TEST_NAME
public static final EntitySubType TIME_TO_TEST_NAME
-
TIME_TO_PROCEDURE_NAME
public static final EntitySubType TIME_TO_PROCEDURE_NAME
-
TIME_TO_TREATMENT_NAME
public static final EntitySubType TIME_TO_TREATMENT_NAME
-
AMOUNT
public static final EntitySubType AMOUNT
-
GENDER
public static final EntitySubType GENDER
-
RACE_ETHNICITY
public static final EntitySubType RACE_ETHNICITY
-
ALLERGIES
public static final EntitySubType ALLERGIES
-
TOBACCO_USE
public static final EntitySubType TOBACCO_USE
-
ALCOHOL_CONSUMPTION
public static final EntitySubType ALCOHOL_CONSUMPTION
-
REC_DRUG_USE
public static final EntitySubType REC_DRUG_USE
-
UNKNOWN_TO_SDK_VERSION
public static final EntitySubType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static EntitySubType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EntitySubType c : EntitySubType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EntitySubType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<EntitySubType>
-
fromValue
public static EntitySubType fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- EntitySubType corresponding to the value
-
knownValues
public static Set<EntitySubType> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownEntitySubTypes
-
-