public enum Symbol extends Enum<Symbol>
"pentagon-open" | "pentagon-dot | "pentagon-open-dot" "hexagon-open" | "hexagon-dot" | "hexagon-open-dot" "hexagon2-open" | "hexagon2-dot" | "hexagon2-open-dot" "octagon-open" | "octagon-dot" | "octagon-open-dot" "star-open" | "star-dot" | "star-open-dot" "hexagram-open" | "hexagram-dot" | "hexagram-open-dot" "star-triangle-up-open" | "star-triangle-up-dot" | "star-triangle-up-open-dot" "star-triangle-down-open" | "star-triangle-down-dot" | "star-triangle-down-open-dot" "star-square-open" | "star-square-dot" | "star-square-open-dot" "star-diamond-open" | "star-diamond-dot" | "star-diamond-open-dot"
"diamond-tall-open" | "diamond-tall-dot" | "diamond-tall-open-dot" "diamond-wide-open" | "diamond-wide-dot" | "diamond-wide-open-dot" "hourglass-open" "bowtie-open" "circle-cross-open" "circle-x-open" "square-cross-open" "square-x-open" "diamond-cross-open" "diamond-x-open"
"cross-thin-open" "x-thin-open" "asterisk-open" "hash-open" "hash-dot" "hash-open-dot"
"y-up-open" "y-down-open" "y-left-open" "y-right-open"
"line-ew-open" "line-ns-open" "line-ne-open" "line-nw-open"
default: "circle"
Sets the marker symbol type. Adding 100 is equivalent to appending "-open" to a symbol name. Adding 200 is equivalent to appending "-dot" to a symbol name. Adding 300 is equivalent to appending "-open-dot" or "dot-open" to a symbol name.
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Symbol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Symbol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Symbol CIRCLE
public static final Symbol SQUARE
public static final Symbol DIAMOND
public static final Symbol CROSS
public static final Symbol X
public static final Symbol TRIANGLE_UP
public static final Symbol TRIANGLE_DOWN
public static final Symbol TRIANGLE_LEFT
public static final Symbol TRIANGLE_RIGHT
public static final Symbol TRIANGLE_NE
public static final Symbol TRIANGLE_SE
public static final Symbol TRIANGEL_SW
public static final Symbol TRIANGLE_NW
public static final Symbol PENTAGON
public static final Symbol HEXAGON
public static final Symbol HEXAGON2
public static final Symbol OCTAGON
public static final Symbol STAR
public static final Symbol HEXAGRAM
public static final Symbol STAR_TRIANGLE_UP
public static final Symbol STAR_TRIANGLE_DOWN
public static final Symbol STAR_SQUARE
public static final Symbol STAR_DIAMOND
public static final Symbol DIAMOND_TALL
public static final Symbol DIAMOND_WIDE
public static final Symbol HOURGLASS
public static final Symbol BOWTIE
public static final Symbol CIRCLE_CROSS
public static final Symbol CIRCLE_X
public static final Symbol SQUARE_CROSS
public static final Symbol SQUARE_X
public static final Symbol DIAMOND_CROSS
public static final Symbol DIAMOND_X
public static final Symbol CROSS_THIN
public static final Symbol X_THIN
public static final Symbol ASTERISK
public static final Symbol HASH
public static final Symbol Y_UP
public static final Symbol Y_DOWN
public static final Symbol Y_LEFT
public static final Symbol Y_RIGHT
public static final Symbol LINE_EW
public static final Symbol LINE_NS
public static final Symbol LINE_NE
public static final Symbol LINE_NW
public static Symbol[] values()
for (Symbol c : Symbol.values()) System.out.println(c);
public static Symbol 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 nullCopyright © 2019. All rights reserved.