All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.oneops.infoblox.model.SearchModifier Maven / Gradle / Ivy

package com.oneops.infoblox.model;

/**
 * Common modifiers used while searching for network objects.
 *
 * @author Suresh G
 */
public enum SearchModifier {
  NONE(""),
  NEGATE("!"),
  CASE_INSENSITIVE(":"),
  REGEX("~"),
  LT("<"),
  GT(">");

  /** Modifier value to be used in search. */
  private final String value;

  SearchModifier(String value) {
    this.value = value;
  }

  public String getValue() {
    return value;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy