public static enum RenderCurveSegment.Type extends java.lang.Enum<RenderCurveSegment.Type>
| Enum Constant | Description |
|---|---|
RENDER_CUBIC_BEZIER |
|
RENDER_POINT |
| Modifier and Type | Method | Description |
|---|---|---|
static RenderCurveSegment.Type |
fromString(java.lang.String value) |
Returns the Type corresponding to the given String.
|
java.lang.String |
getXmlString() |
Returns the String that will be written to XML.
|
java.lang.String |
toString() |
|
static RenderCurveSegment.Type |
valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static RenderCurveSegment.Type fromString(java.lang.String value)
value - a Stringpublic java.lang.String getXmlString()
public java.lang.String toString()
toString in class java.lang.Enum<RenderCurveSegment.Type>Copyright © 2009–2022. All rights reserved.