fish.focus.schema.movementrules.customrule.v1.MobileTerminalStatus 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.customrule.v1;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for MobileTerminalStatus.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="MobileTerminalStatus">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="ACTIVE"/>
* <enumeration value="INACTIVE"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "MobileTerminalStatus")
@XmlEnum
public enum MobileTerminalStatus {
ACTIVE,
INACTIVE;
public String value() {
return name();
}
public static MobileTerminalStatus fromValue(String v) {
return valueOf(v);
}
}