Enum EstimatedMeasurement.Status
- java.lang.Object
-
- java.lang.Enum<EstimatedMeasurement.Status>
-
- org.orekit.estimation.measurements.EstimatedMeasurement.Status
-
- All Implemented Interfaces:
Serializable
,Comparable<EstimatedMeasurement.Status>
- Enclosing class:
- EstimatedMeasurement<T extends ObservedMeasurement<T>>
public static enum EstimatedMeasurement.Status extends Enum<EstimatedMeasurement.Status>
Enumerate for the status of the measurement.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EstimatedMeasurement.Status
valueOf(String name)
Returns the enum constant of this type with the specified name.static EstimatedMeasurement.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROCESSED
public static final EstimatedMeasurement.Status PROCESSED
Status for processed measurements.
-
REJECTED
public static final EstimatedMeasurement.Status REJECTED
Status for rejected measurements.
-
-
Method Detail
-
values
public static EstimatedMeasurement.Status[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EstimatedMeasurement.Status c : EstimatedMeasurement.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EstimatedMeasurement.Status valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-