public enum GeometricObjectType extends Enum<GeometricObjectType>
| Enum Constant and Description |
|---|
COMPLEX |
COMPOSITE |
CURVE |
POINT |
SOLID |
SURFACE |
| Modifier and Type | Method and Description |
|---|---|
static GeometricObjectType |
getById(String id) |
static GeometricObjectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeometricObjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeometricObjectType COMPLEX
public static final GeometricObjectType COMPOSITE
public static final GeometricObjectType CURVE
public static final GeometricObjectType POINT
public static final GeometricObjectType SOLID
public static final GeometricObjectType SURFACE
public static GeometricObjectType[] values()
for (GeometricObjectType c : GeometricObjectType.values()) System.out.println(c);
public static GeometricObjectType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static GeometricObjectType getById(String id)
Copyright © 2019. All Rights Reserved.