
com.att.scld.grm.policy.v1.Operator Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.10.24 at 10:05:09 AM EDT
//
package com.att.scld.grm.policy.v1;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Operator.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="Operator">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="EQUALS"/>
* <enumeration value="LESS_THAN"/>
* <enumeration value="LESS_THAN_OR_EQUAL_TO"/>
* <enumeration value="GREATER_THAN"/>
* <enumeration value="GREATER_THAN_OR_EQUAL_TO"/>
* <enumeration value="MATCHES"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "Operator")
@XmlEnum
public enum Operator {
EQUALS,
LESS_THAN,
LESS_THAN_OR_EQUAL_TO,
GREATER_THAN,
GREATER_THAN_OR_EQUAL_TO,
MATCHES;
public String value() {
return name();
}
public static Operator fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy