Enum InertialFrameId

    • Enum Constant Detail

      • GCRF

        public static final InertialFrameId GCRF
        Constant for Geocentric Celestial Reference Frame.
      • EME2000

        public static final InertialFrameId EME2000
        Constant for Earth Mean Equator 2000 frame (aka J2000).
      • MOD

        public static final InertialFrameId MOD
        Constant for Mean Of Date frame, with IERS 96 conventions (Lieske precession).
      • TOD

        public static final InertialFrameId TOD
        Constant for True Of Date frame, with IERS 96 conventions (Wahr nutation).
      • VEIS1950

        public static final InertialFrameId VEIS1950
        Constant for Veis 1950 frame.
    • Method Detail

      • values

        public static InertialFrameId[] 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 (InertialFrameId c : InertialFrameId.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static InertialFrameId 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 name
        NullPointerException - if the argument is null