public static enum MCspatialCoordinates3DItem.GraphicTypes extends java.lang.Enum<MCspatialCoordinates3DItem.GraphicTypes>
Enum Constant and Description |
---|
ELLIPSE
An ellipse defined by four (x,y,z) triplets, the first two triplets specifying the
endpoints of the major axis and the second two triplets specifying the endpoints of the minor axis.
|
ELLIPSOID
A three-dimensional geometric surface whose plane sections are either
ellipses or circles and contains three intersecting orthogonal axes, "a", "b", and "c".
|
MULTIPOINT
Multiple locations each denoted by an (x,y,z) triplet; the points need not be coplanar.
|
POINT
A single location denoted by a single (x,y,z) triplet.
|
POLYGON
A series of connected line segments with ordered vertices denoted by (x,y,z)
triplets, where the first and last vertices shall be the same forming a polygon; the points shall be coplanar.
|
POLYLINE
A series of connected line segments with ordered vertices denoted by (x,y,z)
triplets; the points need not be coplanar.
|
UNKNOWN
An unknown illegal value.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
definedTerm()
Returns DICOM defined term for this graphic type.
|
static MCspatialCoordinates3DItem.GraphicTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MCspatialCoordinates3DItem.GraphicTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MCspatialCoordinates3DItem.GraphicTypes POINT
public static final MCspatialCoordinates3DItem.GraphicTypes MULTIPOINT
public static final MCspatialCoordinates3DItem.GraphicTypes POLYLINE
public static final MCspatialCoordinates3DItem.GraphicTypes POLYGON
public static final MCspatialCoordinates3DItem.GraphicTypes ELLIPSE
public static final MCspatialCoordinates3DItem.GraphicTypes ELLIPSOID
public static final MCspatialCoordinates3DItem.GraphicTypes UNKNOWN
public static MCspatialCoordinates3DItem.GraphicTypes[] values()
for (MCspatialCoordinates3DItem.GraphicTypes c : MCspatialCoordinates3DItem.GraphicTypes.values()) System.out.println(c);
public static MCspatialCoordinates3DItem.GraphicTypes 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()