public static enum Enums.TextOutline extends java.lang.Enum<Enums.TextOutline>
Enum Constant and Description |
---|
CIRCLE
Text is enclosed in a circle border
|
RECTANGLE
Rectangle (square edges) Border
|
ROUNDED
Rounded Rectangle Border
|
Modifier and Type | Method and Description |
---|---|
static Enums.TextOutline |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Enums.TextOutline[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Enums.TextOutline RECTANGLE
public static final Enums.TextOutline ROUNDED
public static final Enums.TextOutline CIRCLE
public static Enums.TextOutline[] values()
for (Enums.TextOutline c : Enums.TextOutline.values()) System.out.println(c);
public static Enums.TextOutline 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