public static enum MCtemporalCoordinatesItem.RangeTypes extends java.lang.Enum<MCtemporalCoordinatesItem.RangeTypes>
Enum Constant and Description |
---|
BEGIN
A range beginning at one temporal point, and extending beyond the end of the acquired data.
|
END
A range beginning before the start of the acquired data, and extending to (and
including) the identified temporal point.
|
MULTIPOINT
Multiple temporal points.
|
MULTISEGMENT
Multiple segments, each denoted by two temporal points.
|
POINT
A single temporal point.
|
SEGMENT
A range between two temporal points.
|
UNKNOWN
An unknown illegal value.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
definedTerm()
Returns DICOM defined term for this temporal range type.
|
static MCtemporalCoordinatesItem.RangeTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MCtemporalCoordinatesItem.RangeTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MCtemporalCoordinatesItem.RangeTypes POINT
public static final MCtemporalCoordinatesItem.RangeTypes MULTIPOINT
public static final MCtemporalCoordinatesItem.RangeTypes SEGMENT
public static final MCtemporalCoordinatesItem.RangeTypes MULTISEGMENT
public static final MCtemporalCoordinatesItem.RangeTypes BEGIN
public static final MCtemporalCoordinatesItem.RangeTypes END
public static final MCtemporalCoordinatesItem.RangeTypes UNKNOWN
public static MCtemporalCoordinatesItem.RangeTypes[] values()
for (MCtemporalCoordinatesItem.RangeTypes c : MCtemporalCoordinatesItem.RangeTypes.values()) System.out.println(c);
public static MCtemporalCoordinatesItem.RangeTypes 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()