public static enum MCcontainerItem.Continuity extends java.lang.Enum<MCcontainerItem.Continuity>
Enum Constant and Description |
---|
CONTINUOUS
Content Items are logically linked in a continuous textual flow.
|
SEPARATE
Content Items are separate entities.
|
UNKNOWN
Unknown or illegal value.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
definedTerm()
Returns DICOM defined term for this type of continuity.
|
static MCcontainerItem.Continuity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MCcontainerItem.Continuity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MCcontainerItem.Continuity SEPARATE
public static final MCcontainerItem.Continuity CONTINUOUS
public static final MCcontainerItem.Continuity UNKNOWN
public static MCcontainerItem.Continuity[] values()
for (MCcontainerItem.Continuity c : MCcontainerItem.Continuity.values()) System.out.println(c);
public static MCcontainerItem.Continuity 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 definedTerm()