public static enum BubbleColorScheme.Distribution extends Enum<BubbleColorScheme.Distribution>
Enum Constant and Description |
---|
BGR
primary: blue
secondary: green tertiary: red |
BRG
primary: blue
secondary: red tertiary: green |
GBR
primary: green
secondary: blue tertiary: red |
GRB
primary: green
secondary: red tertiary: blue |
RBG
primary: red
secondary: blue tertiary: green |
RGB
primary: red
secondary: green tertiary: blue |
Modifier and Type | Method and Description |
---|---|
static BubbleColorScheme.Distribution |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BubbleColorScheme.Distribution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BubbleColorScheme.Distribution RGB
public static final BubbleColorScheme.Distribution RBG
public static final BubbleColorScheme.Distribution BRG
public static final BubbleColorScheme.Distribution BGR
public static final BubbleColorScheme.Distribution GRB
public static final BubbleColorScheme.Distribution GBR
public static BubbleColorScheme.Distribution[] values()
for (BubbleColorScheme.Distribution c : BubbleColorScheme.Distribution.values()) System.out.println(c);
public static BubbleColorScheme.Distribution 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 null