|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<BorderStyle>
com.osbcp.css.constants.BorderStyle
public enum BorderStyle
Values for the border-style property.
Enum Constant Summary | |
---|---|
DASHED
Specifies a dashed border. |
|
DOTTED
Specifies a dotted border. |
|
DOUBLE
Specifies a double border. |
|
GROOVE
Specifies a 3D grooved border. |
|
HIDDEN
The same as "none", except in border conflict resolution for table elements. |
|
INHERT
Specifies that the border style should be inherited from the parent element. |
|
INSET
Specifies a 3D inset border. |
|
NONE
Specifies no border. |
|
OUTSET
Specifies a 3D outset border. |
|
RIDGE
Specifies a 3D ridged border. |
|
SOLID
Specifies a solid border. |
Method Summary | |
---|---|
java.lang.String |
toString()
|
static BorderStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static BorderStyle[] |
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 BorderStyle NONE
public static final BorderStyle HIDDEN
public static final BorderStyle DOTTED
public static final BorderStyle DASHED
public static final BorderStyle SOLID
public static final BorderStyle DOUBLE
public static final BorderStyle GROOVE
public static final BorderStyle RIDGE
public static final BorderStyle INSET
public static final BorderStyle OUTSET
public static final BorderStyle INHERT
Method Detail |
---|
public static BorderStyle[] values()
for (BorderStyle c : BorderStyle.values()) System.out.println(c);
public static BorderStyle 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<BorderStyle>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |