public enum USegmentType extends Enum<USegmentType>
| Enum Constant and Description |
|---|
SEG_ARCTO |
SEG_CLOSE |
SEG_CUBICTO |
SEG_LINETO |
SEG_MOVETO |
SEG_QUADTO |
| Modifier and Type | Method and Description |
|---|---|
static USegmentType |
getByCode(int code) |
static USegmentType |
valueOf(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 USegmentType[] values()
for (USegmentType c : USegmentType.values()) System.out.println(c);
public static USegmentType 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 USegmentType getByCode(int code)
Copyright © 2017. All rights reserved.