Class MatchPair

java.lang.Object
com.illumon.iris.db.tables.select.MatchPair
All Implemented Interfaces:
Serializable

public class MatchPair extends Object implements Serializable
Holds a pair of column names.
See Also:
  • Field Details

    • ZERO_LENGTH_MATCH_PAIR_ARRAY

      public static final MatchPair[] ZERO_LENGTH_MATCH_PAIR_ARRAY
    • leftColumn

      public final String leftColumn
    • rightColumn

      public final String rightColumn
    • MATCH_PAIR_ARRAY_FORMATTER

      public static final com.fishlib.base.log.LogOutput.ObjFormatter<MatchPair[]> MATCH_PAIR_ARRAY_FORMATTER
    • MATCH_PAIR_FORMATTER

      public static final com.fishlib.base.log.LogOutput.ObjFormatter<MatchPair> MATCH_PAIR_FORMATTER
  • Constructor Details

    • MatchPair

      public MatchPair(String leftColumn, String rightColumn)
      Inputs must be valid column names
      Parameters:
      leftColumn - LHS of the pair
      rightColumn - RHS of the pair
  • Method Details