public enum PolynomialType extends Enum<PolynomialType>
| Enum Constant and Description |
|---|
CHEBYSHEV
Chebyshev polynomial function.
|
CLASSICAL
Classical polynomial function.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getNature()
Getter for the nature of the polynomial function.
|
static PolynomialType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PolynomialType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PolynomialType CLASSICAL
public static final PolynomialType CHEBYSHEV
public static PolynomialType[] values()
for (PolynomialType c : PolynomialType.values()) System.out.println(c);
public static PolynomialType 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 getNature()
Copyright © 2025 CNES. All rights reserved.