public static enum CurveSegment.Type extends Enum<CurveSegment.Type>
| Enum Constant and Description |
|---|
CUBIC_BEZIER |
LINE_SEGMENT |
| Modifier and Type | Method and Description |
|---|---|
static CurveSegment.Type |
fromString(String value) |
String |
getXmlString()
Returns the xmlString
|
String |
toString() |
static CurveSegment.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CurveSegment.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CurveSegment.Type CUBIC_BEZIER
public static final CurveSegment.Type LINE_SEGMENT
public static CurveSegment.Type[] values()
for (CurveSegment.Type c : CurveSegment.Type.values()) System.out.println(c);
public static CurveSegment.Type 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 CurveSegment.Type fromString(String value)
value - public String getXmlString()
public String toString()
toString in class Enum<CurveSegment.Type>Copyright © 2009–2017. All rights reserved.