public enum EnumIncludeNonDICOMObjects extends java.lang.Enum<EnumIncludeNonDICOMObjects>
| Enum Constant and Description |
|---|
FOR_PATIENT
The FO r_ patient.
|
FOR_PHYSICIAN
The FO r_ physician.
|
FOR_RESEARCH
The FO r_ research.
|
FOR_TEACHING
The FO r_ teaching.
|
NO
The NO.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumIncludeNonDICOMObjects |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumIncludeNonDICOMObjects[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumIncludeNonDICOMObjects NO
public static final EnumIncludeNonDICOMObjects FOR_PHYSICIAN
public static final EnumIncludeNonDICOMObjects FOR_PATIENT
public static final EnumIncludeNonDICOMObjects FOR_TEACHING
public static final EnumIncludeNonDICOMObjects FOR_RESEARCH
public static EnumIncludeNonDICOMObjects[] values()
for (EnumIncludeNonDICOMObjects c : EnumIncludeNonDICOMObjects.values()) System.out.println(c);
public static EnumIncludeNonDICOMObjects valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()