Enum PsdCorrection.TimeEvolution
- java.lang.Object
-
- java.lang.Enum<PsdCorrection.TimeEvolution>
-
- org.orekit.models.earth.displacement.PsdCorrection.TimeEvolution
-
- All Implemented Interfaces:
Serializable
,Comparable<PsdCorrection.TimeEvolution>
- Enclosing class:
- PsdCorrection
public static enum PsdCorrection.TimeEvolution extends Enum<PsdCorrection.TimeEvolution>
Enumerate for correction time evolution.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract double
timeFactor(double scaledTime)
Evaluate correction time factor.static PsdCorrection.TimeEvolution
valueOf(String name)
Returns the enum constant of this type with the specified name.static PsdCorrection.TimeEvolution[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXP
public static final PsdCorrection.TimeEvolution EXP
Exponential evolution.
-
LOG
public static final PsdCorrection.TimeEvolution LOG
Logarithmic evolution.
-
-
Method Detail
-
values
public static PsdCorrection.TimeEvolution[] 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 (PsdCorrection.TimeEvolution c : PsdCorrection.TimeEvolution.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PsdCorrection.TimeEvolution 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
-
timeFactor
public abstract double timeFactor(double scaledTime)
Evaluate correction time factor.- Parameters:
scaledTime
- scaled time since earthquake- Returns:
- correction time factor
-
-