Enum ManBasis

    • Enum Constant Detail

      • CANDIDATE

        public static final ManBasis CANDIDATE
        Proposed operational or hypothetical future maneuver.
      • PLANNED

        public static final ManBasis PLANNED
        Currently planned future maneuver.
      • ANTICIPATED

        public static final ManBasis ANTICIPATED
        Non-cooperative future maneuver that is anticipated (i.e. likely) to occur.
      • DETERMINED_TLM

        public static final ManBasis DETERMINED_TLM
        Past maneuver reconstructed from telemetry.
      • DETERMINED_OD

        public static final ManBasis DETERMINED_OD
        Past maneuver reconstructed from orbit determination.
      • SIMULATED

        public static final ManBasis SIMULATED
        Generic maneuver simulation.
      • OTHER

        public static final ManBasis OTHER
        Other bases.
    • Method Detail

      • values

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

        public static ManBasis 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