public enum BorderStyleValue extends Enum<BorderStyleValue>
Enum Constant and Description |
---|
DASHED
A series of square-ended dashes.
|
DOTTED
A series of round dots.
|
DOUBLE
Two parallel solid lines with some space between them.
|
GROOVE
Looks as if it were carved in the canvas.
|
HIDDEN
Same as 'none', but has different behavior in the border conflict
resolution rules for border-collapsed tables.
|
INSET
Looks as if the content on the inside of the border is sunken into the
canvas.
|
NONE
No border.
|
OUTSET
Looks as if the content on the inside of the border is coming out of the
canvas.
|
RIDGE
Looks as if it were coming out of the canvas.
|
SOLID
A single line segment.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static BorderStyleValue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BorderStyleValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BorderStyleValue NONE
public static final BorderStyleValue HIDDEN
public static final BorderStyleValue DOTTED
public static final BorderStyleValue DASHED
public static final BorderStyleValue SOLID
public static final BorderStyleValue DOUBLE
public static final BorderStyleValue GROOVE
public static final BorderStyleValue RIDGE
public static final BorderStyleValue INSET
public static final BorderStyleValue OUTSET
public static BorderStyleValue[] values()
for (BorderStyleValue c : BorderStyleValue.values()) System.out.println(c);
public static BorderStyleValue valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<BorderStyleValue>
Copyright © 2013. All Rights Reserved.