public static enum PathSegment.TypeEnum extends Enum<PathSegment.TypeEnum>
Modifier and Type | Class and Description |
---|---|
static class |
PathSegment.TypeEnum.Adapter |
Enum Constant and Description |
---|
ARCTO |
CLOSE |
CUBICBEZIERTO |
LINETO |
MOVETO |
QUADBEZIERTO |
Modifier and Type | Method and Description |
---|---|
static PathSegment.TypeEnum |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static PathSegment.TypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PathSegment.TypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathSegment.TypeEnum CLOSE
public static final PathSegment.TypeEnum MOVETO
public static final PathSegment.TypeEnum LINETO
public static final PathSegment.TypeEnum ARCTO
public static final PathSegment.TypeEnum QUADBEZIERTO
public static final PathSegment.TypeEnum CUBICBEZIERTO
public static PathSegment.TypeEnum[] values()
for (PathSegment.TypeEnum c : PathSegment.TypeEnum.values()) System.out.println(c);
public static PathSegment.TypeEnum 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 String getValue()
public String toString()
toString
in class Enum<PathSegment.TypeEnum>
public static PathSegment.TypeEnum fromValue(String text)
Copyright © 2023. All rights reserved.