|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<LineStyle>
com.guiseframework.style.LineStyle
public enum LineStyle
The style of a line, such as used for a border or divider.
| Enum Constant Summary | |
|---|---|
DASHED
A series of dashes. |
|
DOT_DASH
Alternating dots and dashes. |
|
DOT_DOT_DASH
Two dots and a dash. |
|
DOTTED
A series of dots. |
|
DOUBLE
Two parallel solid lines with some spaces between them, the lines together with the space equalling any line width specified. |
|
GROOVE
Effect emulating carving on a canvas; typically achieved by using two colors slightly lighter and darker than the line color. |
|
INSET
Effect simulating a sunken canvas. |
|
RIDGE
Effect simulating a line coming out of the canvas. |
|
SOLID
A single line segment. |
|
WAVE
A wavy line. |
|
| Method Summary | |
|---|---|
static LineStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static LineStyle[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final LineStyle DOTTED
public static final LineStyle DASHED
public static final LineStyle SOLID
public static final LineStyle DOUBLE
public static final LineStyle DOT_DASH
public static final LineStyle DOT_DOT_DASH
public static final LineStyle WAVE
public static final LineStyle GROOVE
public static final LineStyle RIDGE
public static final LineStyle INSET
| Method Detail |
|---|
public static LineStyle[] values()
for (LineStyle c : LineStyle.values()) System.out.println(c);
public static LineStyle 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 name
java.lang.NullPointerException - if the argument is null
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||