|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<OutlineStyle>
com.osbcp.css.constants.OutlineStyle
public enum OutlineStyle
Values for the outline-style property.
Enum Constant Summary | |
---|---|
DASHED
Specifies a dashed outline. |
|
DOTTED
Specifies a dotted outline. |
|
DOUBLE
Specifies a double outliner. |
|
GROOVE
Specifies a 3D grooved outline. |
|
INHERIT
Specifies that the outline style should be inherited from the parent element. |
|
INSET
Specifies a 3D inset outline. |
|
NONE
Specifies no outline. |
|
OUTSET
Specifies a 3D outset outline. |
|
RIDGE
Specifies a 3D ridged outline. |
|
SOLID
Specifies a solid outline. |
Method Summary | |
---|---|
java.lang.String |
toString()
|
static OutlineStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static OutlineStyle[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final OutlineStyle NONE
public static final OutlineStyle DOTTED
public static final OutlineStyle DASHED
public static final OutlineStyle SOLID
public static final OutlineStyle DOUBLE
public static final OutlineStyle GROOVE
public static final OutlineStyle RIDGE
public static final OutlineStyle INSET
public static final OutlineStyle OUTSET
public static final OutlineStyle INHERIT
Method Detail |
---|
public static OutlineStyle[] values()
for (OutlineStyle c : OutlineStyle.values()) System.out.println(c);
public static OutlineStyle 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<OutlineStyle>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |