Enum Class HashSide

java.lang.Object
java.lang.Enum<HashSide>
org.springframework.data.couchbase.core.query.HashSide
All Implemented Interfaces:
Serializable, Comparable<HashSide>, Constable

public enum HashSide extends Enum<HashSide>
Hash side to specify hash join. Here based on probe or build, the entity will be used to query or build the hash table. The smaller data set side should be used to build to fit in memory.
Author:
Subhashni Balakrishnan
  • Enum Constant Details

    • NONE

      public static final HashSide NONE
      Hash join will not be used
    • PROBE

      public static final HashSide PROBE
      Associated entity will be on the probe side of the hash table
    • BUILD

      public static final HashSide BUILD
      Associated entity will be used to build the hash table for faster lookup
  • Method Details

    • values

      public static HashSide[] 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 HashSide 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
    • getValue

      public String getValue()