Enum RTNCovarianceKey

    • Enum Constant Detail

      • CR_R

        public static final RTNCovarianceKey CR_R
        Object covariance matrix [1,1].
      • CT_R

        public static final RTNCovarianceKey CT_R
        Object covariance matrix [2,1].
      • CT_T

        public static final RTNCovarianceKey CT_T
        Object covariance matrix [2,2].
      • CN_R

        public static final RTNCovarianceKey CN_R
        Object covariance matrix [3,1].
      • CN_T

        public static final RTNCovarianceKey CN_T
        Object covariance matrix [3,2].
      • CN_N

        public static final RTNCovarianceKey CN_N
        Object covariance matrix [3,3].
      • CRDOT_R

        public static final RTNCovarianceKey CRDOT_R
        Object covariance matrix [4,1].
      • CRDOT_T

        public static final RTNCovarianceKey CRDOT_T
        Object covariance matrix [4,2].
      • CRDOT_N

        public static final RTNCovarianceKey CRDOT_N
        Object covariance matrix [4,3].
      • CRDOT_RDOT

        public static final RTNCovarianceKey CRDOT_RDOT
        Object covariance matrix [4,4].
      • CTDOT_R

        public static final RTNCovarianceKey CTDOT_R
        Object covariance matrix [5,1].
      • CTDOT_T

        public static final RTNCovarianceKey CTDOT_T
        Object covariance matrix [5,2].
      • CTDOT_N

        public static final RTNCovarianceKey CTDOT_N
        Object covariance matrix [5,3].
      • CTDOT_RDOT

        public static final RTNCovarianceKey CTDOT_RDOT
        Object covariance matrix [5,4].
      • CTDOT_TDOT

        public static final RTNCovarianceKey CTDOT_TDOT
        Object covariance matrix [5,5].
      • CNDOT_R

        public static final RTNCovarianceKey CNDOT_R
        Object covariance matrix [6,1].
      • CNDOT_T

        public static final RTNCovarianceKey CNDOT_T
        Object covariance matrix [6,2].
      • CNDOT_N

        public static final RTNCovarianceKey CNDOT_N
        Object covariance matrix [6,3].
      • CNDOT_RDOT

        public static final RTNCovarianceKey CNDOT_RDOT
        Object covariance matrix [6,4].
      • CNDOT_TDOT

        public static final RTNCovarianceKey CNDOT_TDOT
        Object covariance matrix [6,5].
      • CNDOT_NDOT

        public static final RTNCovarianceKey CNDOT_NDOT
        Object covariance matrix [6,6].
      • CDRG_R

        public static final RTNCovarianceKey CDRG_R
        Object covariance matrix [7,1].
      • CDRG_T

        public static final RTNCovarianceKey CDRG_T
        Object covariance matrix [7,2].
      • CDRG_N

        public static final RTNCovarianceKey CDRG_N
        Object covariance matrix [7,3].
      • CDRG_RDOT

        public static final RTNCovarianceKey CDRG_RDOT
        Object covariance matrix [7,4].
      • CDRG_TDOT

        public static final RTNCovarianceKey CDRG_TDOT
        Object covariance matrix [7,5].
      • CDRG_NDOT

        public static final RTNCovarianceKey CDRG_NDOT
        Object covariance matrix [7,6].
      • CDRG_DRG

        public static final RTNCovarianceKey CDRG_DRG
        Object covariance matrix [7,7].
      • CSRP_R

        public static final RTNCovarianceKey CSRP_R
        Object covariance matrix [8,1].
      • CSRP_T

        public static final RTNCovarianceKey CSRP_T
        Object covariance matrix [8,2].
      • CSRP_N

        public static final RTNCovarianceKey CSRP_N
        Object covariance matrix [8,3].
      • CSRP_RDOT

        public static final RTNCovarianceKey CSRP_RDOT
        Object covariance matrix [8,4].
      • CSRP_TDOT

        public static final RTNCovarianceKey CSRP_TDOT
        Object covariance matrix [8,5].
      • CSRP_NDOT

        public static final RTNCovarianceKey CSRP_NDOT
        Object covariance matrix [8,6].
      • CSRP_DRG

        public static final RTNCovarianceKey CSRP_DRG
        Object covariance matrix [8,7].
      • CSRP_SRP

        public static final RTNCovarianceKey CSRP_SRP
        Object covariance matrix [8,9].
      • CTHR_R

        public static final RTNCovarianceKey CTHR_R
        Object covariance matrix [9,1].
      • CTHR_T

        public static final RTNCovarianceKey CTHR_T
        Object covariance matrix [9,2].
      • CTHR_N

        public static final RTNCovarianceKey CTHR_N
        Object covariance matrix [9,3].
      • CTHR_RDOT

        public static final RTNCovarianceKey CTHR_RDOT
        Object covariance matrix [9,4].
      • CTHR_TDOT

        public static final RTNCovarianceKey CTHR_TDOT
        Object covariance matrix [9,5].
      • CTHR_NDOT

        public static final RTNCovarianceKey CTHR_NDOT
        Object covariance matrix [9,6].
      • CTHR_DRG

        public static final RTNCovarianceKey CTHR_DRG
        Object covariance matrix [9,7].
      • CTHR_SRP

        public static final RTNCovarianceKey CTHR_SRP
        Object covariance matrix [9,8].
      • CTHR_THR

        public static final RTNCovarianceKey CTHR_THR
        Object covariance matrix [9,9].
    • Method Detail

      • values

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

        public static RTNCovarianceKey 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
      • process

        public boolean process​(ParseToken token,
                               ContextBinding context,
                               RTNCovariance container)
        Process one token.
        Parameters:
        token - token to process
        context - context binding
        container - container to fill
        Returns:
        true of token was accepted