Enum Class CrossDcConf.ExpandDbq

java.lang.Object
java.lang.Enum<CrossDcConf.ExpandDbq>
org.apache.solr.crossdc.common.CrossDcConf.ExpandDbq
All Implemented Interfaces:
Serializable, Comparable<CrossDcConf.ExpandDbq>, Constable
Enclosing class:
CrossDcConf

public static enum CrossDcConf.ExpandDbq extends Enum<CrossDcConf.ExpandDbq>
Option to expand Delete-By-Query requests on the producer side.
  • Enum Constant Details

    • NONE

      public static final CrossDcConf.ExpandDbq NONE
      Don't expand DBQs, mirror them as-is.
    • EXPAND

      public static final CrossDcConf.ExpandDbq EXPAND
      Expand DBQs into multiple Delete-By-Id requests using matching documents on the producer side.
  • Method Details

    • values

      public static CrossDcConf.ExpandDbq[] 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 CrossDcConf.ExpandDbq 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
    • getOrDefault

      public static CrossDcConf.ExpandDbq getOrDefault(String strValue, CrossDcConf.ExpandDbq defaultValue)