public static enum HighlightAreaAnnotation.BorderStyleValue extends java.lang.Enum<HighlightAreaAnnotation.BorderStyleValue>
| Enum Constant and Description |
|---|
DASHED
Dashed line border
|
DOTTED
Dotted line border
|
NONE
No border
|
SOLID
Solid line border
|
| Modifier and Type | Field and Description |
|---|---|
long |
value |
| Modifier and Type | Method and Description |
|---|---|
static HighlightAreaAnnotation.BorderStyleValue |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HighlightAreaAnnotation.BorderStyleValue[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final HighlightAreaAnnotation.BorderStyleValue NONE
public static final HighlightAreaAnnotation.BorderStyleValue DOTTED
public static final HighlightAreaAnnotation.BorderStyleValue DASHED
public static final HighlightAreaAnnotation.BorderStyleValue SOLID
public static HighlightAreaAnnotation.BorderStyleValue[] values()
for (HighlightAreaAnnotation.BorderStyleValue c : HighlightAreaAnnotation.BorderStyleValue.values())
System.out.println(c);
public static HighlightAreaAnnotation.BorderStyleValue 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