Enum RowComparator

java.lang.Object
java.lang.Enum<RowComparator>
org.assertj.db.util.RowComparator
All Implemented Interfaces:
Serializable, Comparable<RowComparator>, Comparator<Row>

public enum RowComparator extends Enum<RowComparator> implements Comparator<Row>
Comparator for the Row.
Author:
Régis Pouiller
  • Enum Constant Details

    • INSTANCE

      public static final RowComparator INSTANCE
      The singleton
  • Method Details

    • values

      public static RowComparator[] 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 RowComparator 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
    • compare

      public int compare(Row row1, Row row2)
      Specified by:
      compare in interface Comparator<Row>