Package generic

Enum Class End.Epsilon

All Implemented Interfaces:
Serializable, Comparable<End.Epsilon>, Constable
Enclosing interface:
End<T>

public static enum End.Epsilon extends Enum<End.Epsilon>
An enum for the three allowed coefficients of epsilon
  • Enum Constant Details

    • NEGATIVE

      public static final End.Epsilon NEGATIVE
      value - 1*epsilon, -1 for open upper endpoints
    • ZERO

      public static final End.Epsilon ZERO
      value + 0*epsilon, 0 for closed enpoints
    • POSITIVE

      public static final End.Epsilon POSITIVE
      value + epsilon, 1 for open lower endpoints
  • Method Details

    • values

      public static End.Epsilon[] 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 End.Epsilon 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