public enum EnumDeidentificationAction extends java.lang.Enum<EnumDeidentificationAction>
| Enum Constant and Description |
|---|
D
The D - replace with a non-zero length value that may be a dummy value and consistent with the VR.
|
U
The U - replace with a non-zero length UID that is internally consistent with in a set of Instance.
|
X
The X - remove.
|
Z
The Z - replace with a zero length value, or a non-zero length value that maybe a dummy value and consistent with the VR.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumDeidentificationAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumDeidentificationAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumDeidentificationAction D
public static final EnumDeidentificationAction Z
public static final EnumDeidentificationAction X
public static final EnumDeidentificationAction U
public static EnumDeidentificationAction[] values()
for (EnumDeidentificationAction c : EnumDeidentificationAction.values()) System.out.println(c);
public static EnumDeidentificationAction 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()