Initializing help system before first use

RowType

  • java.lang.Object
    • java.lang.Enum<RowType>
      • com.dashoptimization.RowType
  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<RowType>

    public enum RowType
    extends java.lang.Enum<RowType>
    implements java.lang.Comparable<RowType>
    Enumeration for variable/column types.

    Examples using RowType:

    Since:
    43.00
    • Enum Constant Summary

      Enum Constant Description
      EQ
      Equal row.
      GEQ
      Greather than or equal.
      LEQ
      Less than or equal row.
      N
      Neutral row.
      Range
      Range row.
    • Field Summary

      Modifier and Type Field Description
      byte value  
    • Method Summary

      Modifier and Type Method Description
      static RowType fromValue​(byte value)  
      static RowType valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static RowType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.lang.Comparable

        compareTo
    • Enum Constant Detail

      • LEQ

        public static final RowType LEQ
        Less than or equal row.
        Since:
        43.00
      • EQ

        public static final RowType EQ
        Equal row.
        Since:
        43.00
      • GEQ

        public static final RowType GEQ
        Greather than or equal.
        Since:
        43.00
      • Range

        public static final RowType Range
        Range row.
        Since:
        43.00
      • N

        public static final RowType N
        Neutral row.
        Since:
        43.00
    • Field Detail

      • value

        public final byte value
    • Method Detail

      • values

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

        public static RowType valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • fromValue

        public static RowType fromValue​(byte value)

© 2001-2025 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.