public enum USegmentType extends java.lang.Enum<USegmentType>
| Enum Constant and Description |
|---|
SEG_ARCTO |
SEG_CLOSE |
SEG_CUBICTO |
SEG_LINETO |
SEG_MOVETO |
SEG_QUADTO |
| Modifier and Type | Field and Description |
|---|---|
static int |
SEG_ARCTO_VALUE |
| Modifier and Type | Method and Description |
|---|---|
int |
getNbPoints() |
static USegmentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static USegmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final USegmentType SEG_MOVETO
public static final USegmentType SEG_LINETO
public static final USegmentType SEG_QUADTO
public static final USegmentType SEG_CUBICTO
public static final USegmentType SEG_CLOSE
public static final USegmentType SEG_ARCTO
public static final int SEG_ARCTO_VALUE
public static USegmentType[] values()
for (USegmentType c : USegmentType.values()) System.out.println(c);
public static USegmentType 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 int getNbPoints()