public static enum EGraphics.Outline extends java.lang.Enum<EGraphics.Outline>
Enum Constant and Description |
---|
NOPAT
Draw stipple pattern with no outline.
|
PAT_DA1
Draw stipple pattern with short dashed outline.
|
PAT_DA1_T1
Draw stipple pattern with dashed thick outline.
|
PAT_DA2
Draw stipple pattern with long dashed outline.
|
PAT_DD1
Draw stipple pattern with short dotted-dashed outline.
|
PAT_DD2
Draw stipple pattern with long dotted-dashed outline.
|
PAT_DO1
Draw stipple pattern with close dotted outline.
|
PAT_DO1_T1
Draw stipple pattern with close dotted thick outline.
|
PAT_DO1_T2
Draw stipple pattern with close dotted thicker outline.
|
PAT_DO2
Draw stipple pattern with far dotted outline.
|
PAT_DO2_T1
Draw stipple pattern with far dotted thick outline.
|
PAT_DO2_T2
Draw stipple pattern with far dotted thicker outline.
|
PAT_S
Draw stipple pattern with solid outline.
|
PAT_T1
Draw stipple pattern with solid thick outline.
|
PAT_T2
Draw stipple pattern with solid thicker outline.
|
Modifier and Type | Method and Description |
---|---|
static EGraphics.Outline |
findOutline(int index) |
static EGraphics.Outline |
findOutline(java.lang.String name) |
java.lang.String |
getConstName() |
int |
getIndex() |
int |
getLen() |
java.lang.String |
getName() |
static java.util.List<EGraphics.Outline> |
getOutlines() |
int |
getPattern() |
int |
getThickness() |
boolean |
isSolidPattern() |
java.lang.String |
toString() |
static EGraphics.Outline |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EGraphics.Outline[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EGraphics.Outline NOPAT
public static final EGraphics.Outline PAT_S
public static final EGraphics.Outline PAT_T1
public static final EGraphics.Outline PAT_T2
public static final EGraphics.Outline PAT_DO1
public static final EGraphics.Outline PAT_DO2
public static final EGraphics.Outline PAT_DA1
public static final EGraphics.Outline PAT_DA2
public static final EGraphics.Outline PAT_DD1
public static final EGraphics.Outline PAT_DD2
public static final EGraphics.Outline PAT_DO1_T1
public static final EGraphics.Outline PAT_DO2_T1
public static final EGraphics.Outline PAT_DA1_T1
public static final EGraphics.Outline PAT_DO1_T2
public static final EGraphics.Outline PAT_DO2_T2
public static EGraphics.Outline[] values()
for (EGraphics.Outline c : EGraphics.Outline.values()) System.out.println(c);
public static EGraphics.Outline 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 java.lang.String getName()
public java.lang.String getConstName()
public int getIndex()
public boolean isSolidPattern()
public int getPattern()
public int getLen()
public int getThickness()
public static EGraphics.Outline findOutline(int index)
public static EGraphics.Outline findOutline(java.lang.String name)
public static java.util.List<EGraphics.Outline> getOutlines()
public java.lang.String toString()
toString
in class java.lang.Enum<EGraphics.Outline>