public static enum GeometryUtil.CoordinateCoverage extends Enum<GeometryUtil.CoordinateCoverage>
Enum Constant and Description |
---|
FULL
All atoms have coordinates.
|
NONE
No atoms have coordinates.
|
PARTIAL
At least one atom has coordinates but not all.
|
Modifier and Type | Method and Description |
---|---|
static GeometryUtil.CoordinateCoverage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeometryUtil.CoordinateCoverage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeometryUtil.CoordinateCoverage FULL
public static final GeometryUtil.CoordinateCoverage PARTIAL
public static final GeometryUtil.CoordinateCoverage NONE
public static GeometryUtil.CoordinateCoverage[] values()
for (GeometryUtil.CoordinateCoverage c : GeometryUtil.CoordinateCoverage.values()) System.out.println(c);
public static GeometryUtil.CoordinateCoverage 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 nullCopyright © 2017. All Rights Reserved.