Enum Class LaterationSolverType

java.lang.Object
java.lang.Enum<LaterationSolverType>
com.irurueta.navigation.lateration.LaterationSolverType
All Implemented Interfaces:
Serializable, Comparable<LaterationSolverType>, Constable

public enum LaterationSolverType extends Enum<LaterationSolverType>
Trilateration solver type.
  • Enum Constant Details

    • INHOMOGENEOUS_LINEAR_TRILATERATION_SOLVER

      public static final LaterationSolverType INHOMOGENEOUS_LINEAR_TRILATERATION_SOLVER
      Inhomogeneous linear lateration solver.
    • HOMOGENEOUS_LINEAR_TRILATERATION_SOLVER

      public static final LaterationSolverType HOMOGENEOUS_LINEAR_TRILATERATION_SOLVER
      Homogeneous linear lateration solver.
    • NON_LINEAR_TRILATERATION_SOLVER

      public static final LaterationSolverType NON_LINEAR_TRILATERATION_SOLVER
      Non-linear lateration solver.
  • Constructor Details

    • LaterationSolverType

      private LaterationSolverType()
  • Method Details

    • values

      public static LaterationSolverType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static LaterationSolverType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null