public static enum RenderCurveSegment.Type extends Enum<RenderCurveSegment.Type>
| Enum Constant and Description |
|---|
RENDER_CUBIC_BEZIER |
RENDER_POINT |
| Modifier and Type | Method and Description |
|---|---|
static RenderCurveSegment.Type |
fromString(String value)
Returns the Type corresponding to the given String.
|
String |
getXmlString()
Returns the String that will be written to XML.
|
String |
toString() |
static RenderCurveSegment.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderCurveSegment.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderCurveSegment.Type RENDER_CUBIC_BEZIER
public static final RenderCurveSegment.Type RENDER_POINT
public static RenderCurveSegment.Type[] values()
for (RenderCurveSegment.Type c : RenderCurveSegment.Type.values()) System.out.println(c);
public static RenderCurveSegment.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 RenderCurveSegment.Type fromString(String value)
value - a Stringpublic String getXmlString()
public String toString()
toString in class Enum<RenderCurveSegment.Type>Copyright © 2009–2017. All rights reserved.