public static enum Properties.Style extends Enum<Properties.Style>
"#ace""#aaccee"##RRGGBB or #RGB order| Enum Constant and Description |
|---|
DESCRIPTION
Value:
String |
FILL
Value: color
String (see color rules) |
FILL_OPACITY
Value:
0.0 ≤ double ≤ 1.0 |
MARKER_COLOR
Value: color
String (see color rules) |
MARKER_SIZE
Value:
["small", "medium, "large"] |
MARKER_SYMBOL
|
STROKE
Value: color
String (see color rules) |
STROKE_OPACITY
Value:
0.0 ≤ double ≤ 1.0 |
STROKE_WIDTH
Value:
0.0 ≤ double |
TITLE
Value:
String |
| Modifier and Type | Method and Description |
|---|---|
String |
toString()
Returns the
Enum.name() of this identifier converted to
CaseFormat.LOWER_HYPHEN. |
static Properties.Style |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Properties.Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Properties.Style DESCRIPTION
Stringpublic static final Properties.Style FILL
String (see color rules)public static final Properties.Style FILL_OPACITY
0.0 ≤ double ≤ 1.0public static final Properties.Style MARKER_COLOR
String (see color rules)public static final Properties.Style MARKER_SIZE
["small", "medium, "large"]public static final Properties.Style MARKER_SYMBOL
public static final Properties.Style STROKE
String (see color rules)public static final Properties.Style STROKE_OPACITY
0.0 ≤ double ≤ 1.0public static final Properties.Style STROKE_WIDTH
0.0 ≤ doublepublic static final Properties.Style TITLE
Stringpublic static Properties.Style[] values()
for (Properties.Style c : Properties.Style.values()) System.out.println(c);
public static Properties.Style 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()
Enum.name() of this identifier converted to
CaseFormat.LOWER_HYPHEN.toString in class Enum<Properties.Style>