public enum LifetimeCalculationStatus extends Enum<LifetimeCalculationStatus> implements Enumeration
LifetimeOrbitPropagator
calculation.Enum Constant and Description |
---|
CALCULATION_COMPLETE
Indicates that the calculation completed normally and the orbit decayed without any errors.
|
CANCELLED
Indicates that the calculation was cancelled before it could determine the decay date.
|
EARLY_DECAY
Indicates that the orbit was already decayed before the calculation could begin.
|
NO_DECAY
Indicates that the orbit does not decay.
|
NO_DECAY_DURATION
|
NO_DECAY_ORBIT
|
Modifier and Type | Method and Description |
---|---|
static LifetimeCalculationStatus |
getDefault()
Get the enum constant that is considered to be the default.
|
static LifetimeCalculationStatus |
getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
int |
getValue()
Get the numeric value associated with this enum constant.
|
static LifetimeCalculationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LifetimeCalculationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LifetimeCalculationStatus CALCULATION_COMPLETE
public static final LifetimeCalculationStatus EARLY_DECAY
public static final LifetimeCalculationStatus NO_DECAY
public static final LifetimeCalculationStatus CANCELLED
public static final LifetimeCalculationStatus NO_DECAY_ORBIT
public static final LifetimeCalculationStatus NO_DECAY_DURATION
public static LifetimeCalculationStatus[] values()
for (LifetimeCalculationStatus c : LifetimeCalculationStatus.values()) System.out.println(c);
public static LifetimeCalculationStatus 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 int getValue()
getValue
in interface Enumeration
@Nonnull public static LifetimeCalculationStatus getFromValue(int value)
value
- a numeric value.@Nonnull public static LifetimeCalculationStatus getDefault()