Enum Remainder.Type

java.lang.Object
java.lang.Enum<Remainder.Type>
com.singularsys.jep.misc.functions.Remainder.Type
All Implemented Interfaces:
Serializable, Comparable<Remainder.Type>, java.lang.constant.Constable
Enclosing class:
Remainder

public static enum Remainder.Type extends Enum<Remainder.Type>
  • Enum Constant Details

    • TRUNCATED

      public static final Remainder.Type TRUNCATED
      Remainder has same sign as divisor. q = (int) (x/y), r = x - q y .
    • FLOOR

      public static final Remainder.Type FLOOR
      Remainder has same sign as dividend. q = floor(x/y), r = x - q y.
    • EUCLIDEAN

      public static final Remainder.Type EUCLIDEAN
      Remainder is non negative. y>0, q = floor(x/y), y<0, ceil(x/y), r = x - q y.
    • TRUNCATED_QUOTIENT

      public static final Remainder.Type TRUNCATED_QUOTIENT
    • FLOOR_QUOTIENT

      public static final Remainder.Type FLOOR_QUOTIENT
    • EUCLIDEAN_QUOTIENT

      public static final Remainder.Type EUCLIDEAN_QUOTIENT
  • Method Details

    • values

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

      public static Remainder.Type 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