![JAR search and dependency download from the Maven repository](/logo.png)
com.oneops.infoblox.model.SearchModifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infoblox-java Show documentation
Show all versions of infoblox-java Show documentation
A pure java API for Infoblox DNS appliance.
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