fish.focus.schema.movementrules.search.v1.AlarmSearchKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of movement-rules-model Show documentation
Show all versions of movement-rules-model Show documentation
This module shall have interfaces, XSD, and DTOs
The newest version!
package fish.focus.schema.movementrules.search.v1;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for AlarmSearchKey.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="AlarmSearchKey">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="ALARM_GUID"/>
* <enumeration value="ASSET_GUID"/>
* <enumeration value="STATUS"/>
* <enumeration value="RULE_RECIPIENT"/>
* <enumeration value="FROM_DATE"/>
* <enumeration value="TO_DATE"/>
* <enumeration value="RULE_GUID"/>
* <enumeration value="RULE_NAME"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "AlarmSearchKey")
@XmlEnum
public enum AlarmSearchKey {
ALARM_GUID,
ASSET_GUID,
STATUS,
RULE_RECIPIENT,
FROM_DATE,
TO_DATE,
RULE_GUID,
RULE_NAME;
public String value() {
return name();
}
public static AlarmSearchKey fromValue(String v) {
return valueOf(v);
}
}