Enum SearchByAttributeValue.Type
- java.lang.Object
-
- java.lang.Enum<SearchByAttributeValue.Type>
-
- software.amazon.awssdk.services.medicalimaging.model.SearchByAttributeValue.Type
-
- All Implemented Interfaces:
Serializable,Comparable<SearchByAttributeValue.Type>
- Enclosing class:
- SearchByAttributeValue
public static enum SearchByAttributeValue.Type extends Enum<SearchByAttributeValue.Type>
- See Also:
SearchByAttributeValue.type()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATED_ATDICOM_ACCESSION_NUMBERDICOM_PATIENT_IDDICOM_STUDY_DATE_AND_TIMEDICOM_STUDY_IDDICOM_STUDY_INSTANCE_UIDUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SearchByAttributeValue.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static SearchByAttributeValue.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DICOM_PATIENT_ID
public static final SearchByAttributeValue.Type DICOM_PATIENT_ID
-
DICOM_ACCESSION_NUMBER
public static final SearchByAttributeValue.Type DICOM_ACCESSION_NUMBER
-
DICOM_STUDY_ID
public static final SearchByAttributeValue.Type DICOM_STUDY_ID
-
DICOM_STUDY_INSTANCE_UID
public static final SearchByAttributeValue.Type DICOM_STUDY_INSTANCE_UID
-
CREATED_AT
public static final SearchByAttributeValue.Type CREATED_AT
-
DICOM_STUDY_DATE_AND_TIME
public static final SearchByAttributeValue.Type DICOM_STUDY_DATE_AND_TIME
-
UNKNOWN_TO_SDK_VERSION
public static final SearchByAttributeValue.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static SearchByAttributeValue.Type[] 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 (SearchByAttributeValue.Type c : SearchByAttributeValue.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SearchByAttributeValue.Type 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
-
-