public static enum ElementaryMultiplicationTypes.ElementaryType extends Enum<ElementaryMultiplicationTypes.ElementaryType>
| Enum Constant and Description |
|---|
COS
Used to represent the elementary trigonometric polynomial cos(t)
|
SIN
Used to represent the elementary trigonometric polynomial sin(t)
|
| Modifier and Type | Method and Description |
|---|---|
static ElementaryMultiplicationTypes.ElementaryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ElementaryMultiplicationTypes.ElementaryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElementaryMultiplicationTypes.ElementaryType COS
public static final ElementaryMultiplicationTypes.ElementaryType SIN
public static ElementaryMultiplicationTypes.ElementaryType[] values()
for (ElementaryMultiplicationTypes.ElementaryType c : ElementaryMultiplicationTypes.ElementaryType.values()) System.out.println(c);
public static ElementaryMultiplicationTypes.ElementaryType 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 © 2025 CNES. All rights reserved.