public enum LagrangianPoints extends Enum<LagrangianPoints>
Enum Constant and Description |
---|
L1
Lagrangian Point L1.
|
L2
Lagrangian Point L2.
|
L3
Lagrangian Point L3.
|
L4
Lagrangian Point L4.
|
L5
Lagrangian Point L5.
|
Modifier and Type | Method and Description |
---|---|
static LagrangianPoints |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LagrangianPoints[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LagrangianPoints L1
public static final LagrangianPoints L2
public static final LagrangianPoints L3
public static final LagrangianPoints L4
public static final LagrangianPoints L5
public static LagrangianPoints[] values()
for (LagrangianPoints c : LagrangianPoints.values()) System.out.println(c);
public static LagrangianPoints 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-2022 CS GROUP. All rights reserved.