public static enum BorderCollapse.Type extends java.lang.Enum<BorderCollapse.Type>
Enum Constant and Description |
---|
collapse
Borders are collapsed into a single border when possible
(border-spacing and empty-cells properties will be ignored)
|
inherit
Specifies that the value of the border-collapse property should be
inherited from the parent element
|
separate
Borders are detached (border-spacing and empty-cells properties will
not be ignored).
|
Modifier and Type | Method and Description |
---|---|
static BorderCollapse.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BorderCollapse.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BorderCollapse.Type collapse
public static final BorderCollapse.Type separate
public static final BorderCollapse.Type inherit
public static BorderCollapse.Type[] values()
for (BorderCollapse.Type c : BorderCollapse.Type.values()) System.out.println(c);
public static BorderCollapse.Type 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 null