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

org.omg.space.xtce.VerifierEnumerationType Maven / Gradle / Ivy

Go to download

This project contains software to support the Object Management Group (OMG) Space Domain Task Force (SDTF) maintained XML Telemetry and Command Exchange (XTCE) specification.

There is a newer version: 1.1.6
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2019.03.16 at 05:52:46 PM MST 
//


package org.omg.space.xtce;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for VerifierEnumerationType. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="VerifierEnumerationType">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="release"/>
 *     <enumeration value="transferredToRange"/>
 *     <enumeration value="sentFromRange"/>
 *     <enumeration value="received"/>
 *     <enumeration value="accepted"/>
 *     <enumeration value="queued"/>
 *     <enumeration value="executing"/>
 *     <enumeration value="complete"/>
 *     <enumeration value="failed"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "VerifierEnumerationType") @XmlEnum public enum VerifierEnumerationType { @XmlEnumValue("release") RELEASE("release"), @XmlEnumValue("transferredToRange") TRANSFERRED_TO_RANGE("transferredToRange"), @XmlEnumValue("sentFromRange") SENT_FROM_RANGE("sentFromRange"), @XmlEnumValue("received") RECEIVED("received"), @XmlEnumValue("accepted") ACCEPTED("accepted"), @XmlEnumValue("queued") QUEUED("queued"), @XmlEnumValue("executing") EXECUTING("executing"), @XmlEnumValue("complete") COMPLETE("complete"), @XmlEnumValue("failed") FAILED("failed"); private final String value; VerifierEnumerationType(String v) { value = v; } public String value() { return value; } public static VerifierEnumerationType fromValue(String v) { for (VerifierEnumerationType c: VerifierEnumerationType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy