public enum CoordinateSequenceSegmentType extends Enum<CoordinateSequenceSegmentType>
| Modifier and Type | Method and Description |
|---|---|
static CoordinateSequenceSegmentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoordinateSequenceSegmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoordinateSequenceSegmentType CURVE
public static final CoordinateSequenceSegmentType LINE
public static final CoordinateSequenceSegmentType ARC
public static CoordinateSequenceSegmentType[] values()
for (CoordinateSequenceSegmentType c : CoordinateSequenceSegmentType.values()) System.out.println(c);
public static CoordinateSequenceSegmentType 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 © 2007–2018 Andreas W. Bartels. All rights reserved.