public static enum BubbleRenderer.BubbleScaleMode extends java.lang.Enum<BubbleRenderer.BubbleScaleMode>
| Enum Constant and Description |
|---|
LINEAR
Bubble radius is scaled directly by
BubbleSeries z-vals |
SQUARE_ROOT
Bubble radius is scaled by the square root of
BubbleSeries z-vals. |
| Modifier and Type | Method and Description |
|---|---|
static BubbleRenderer.BubbleScaleMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BubbleRenderer.BubbleScaleMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BubbleRenderer.BubbleScaleMode LINEAR
BubbleSeries z-valspublic static final BubbleRenderer.BubbleScaleMode SQUARE_ROOT
BubbleSeries z-vals.
This is the default scaling used.public static BubbleRenderer.BubbleScaleMode[] values()
for (BubbleRenderer.BubbleScaleMode c : BubbleRenderer.BubbleScaleMode.values()) System.out.println(c);
public static BubbleRenderer.BubbleScaleMode 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