public enum EnumShapeType extends java.lang.Enum<EnumShapeType>
| Enum Constant and Description |
|---|
BISECTS
The bisects.
|
COMMON_END_POINT
The common_ end_ point.
|
CURVED_SURFACE
The curve d_ surface.
|
FIDUCIAL_TYPE_SHAPE
The fiducial_ type_ shape.
|
INTER_ORBITAL_LINE
The INTE r_ orbita l_ line.
|
LATERALITY_PLANE
The laterality_ plane.
|
PHYSICAL_RULER
The physical_ ruler.
|
SINGLE_FIDUCIAL_POINT
The single_ fiducial_ point.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumShapeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumShapeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumShapeType SINGLE_FIDUCIAL_POINT
public static final EnumShapeType INTER_ORBITAL_LINE
public static final EnumShapeType LATERALITY_PLANE
public static final EnumShapeType CURVED_SURFACE
public static final EnumShapeType PHYSICAL_RULER
public static final EnumShapeType COMMON_END_POINT
public static final EnumShapeType BISECTS
public static final EnumShapeType FIDUCIAL_TYPE_SHAPE
public static EnumShapeType[] values()
for (EnumShapeType c : EnumShapeType.values()) System.out.println(c);
public static EnumShapeType 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()