public static enum Area.InterpolationMode extends Enum<Area.InterpolationMode>
Enum Constant and Description |
---|
BASIS
a B-spline, with control point duplication on the ends.
|
BASIS_OPEN
an open B-spline; may not intersect the start or end.
|
CARDINAL
a Cardinal spline, with control point duplication on the ends.
|
CARDINAL_OPEN
an open Cardinal spline; may not intersect the start or end, but will
intersect other control points.
|
LINEAR
piecewise linear segments, as in a polyline.
|
MONOTONE
cubic interpolation that preserves monotonicity in y.
|
STEP
alternate between horizontal and vertical segments, as in a step
function
|
STEP_AFTER
alternate between horizontal and vertical segments, as in a step
function
|
STEP_BEFORE
alternate between vertical and horizontal segments, as in a step
function.
|
Modifier and Type | Method and Description |
---|---|
static Area.InterpolationMode |
fromValue(String value) |
String |
getValue() |
static Area.InterpolationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Area.InterpolationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Area.InterpolationMode LINEAR
public static final Area.InterpolationMode STEP
public static final Area.InterpolationMode STEP_BEFORE
public static final Area.InterpolationMode STEP_AFTER
public static final Area.InterpolationMode BASIS
public static final Area.InterpolationMode BASIS_OPEN
public static final Area.InterpolationMode CARDINAL
public static final Area.InterpolationMode CARDINAL_OPEN
public static final Area.InterpolationMode MONOTONE
public static Area.InterpolationMode[] values()
for (Area.InterpolationMode c : Area.InterpolationMode.values()) System.out.println(c);
public static Area.InterpolationMode 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 getValue()
public static Area.InterpolationMode fromValue(String value)
Copyright © 2015 gwt-d3. All rights reserved.