public static enum OEMWriter.InterpolationMethod extends Enum<OEMWriter.InterpolationMethod>
Enum Constant and Description |
---|
HERMITE
Hermite interpolation.
|
LAGRANGE
Lagrange interpolation.
|
LINEAR
Linear interpolation.
|
Modifier and Type | Method and Description |
---|---|
static OEMWriter.InterpolationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OEMWriter.InterpolationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OEMWriter.InterpolationMethod HERMITE
public static final OEMWriter.InterpolationMethod LAGRANGE
public static final OEMWriter.InterpolationMethod LINEAR
public static OEMWriter.InterpolationMethod[] values()
for (OEMWriter.InterpolationMethod c : OEMWriter.InterpolationMethod.values()) System.out.println(c);
public static OEMWriter.InterpolationMethod 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 © 2002-2017 CS Systèmes d'information. All rights reserved.