public enum BorderStyle extends Enum<BorderStyle>
Describes style of the annotation border.
Enum Constant and Description |
---|
Beveled
Bevelled border.
|
Dashed
Dashed border.
|
Inset
Inset border.
|
Solid
Solid border.
|
Underline
Underlined border.
|
Modifier and Type | Method and Description |
---|---|
static BorderStyle |
getByValue(int value) |
int |
getValue() |
static BorderStyle |
valueOf(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.
|
public static final BorderStyle Solid
Solid border.
public static final BorderStyle Dashed
Dashed border.
public static final BorderStyle Beveled
Bevelled border.
public static final BorderStyle Inset
Inset border.
public static final BorderStyle Underline
Underlined border.
public static BorderStyle[] values()
for (BorderStyle c : BorderStyle.values()) System.out.println(c);
public static BorderStyle 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 int getValue()
public static BorderStyle getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.