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

org.omg.space.xtce.ComparisonCheckType 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.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * A ParameterInstanceRef to a value or another parameter instance
 * 
 * 

Java class for ComparisonCheckType complex type. * *

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

 * <complexType name="ComparisonCheckType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ParameterInstanceRef1" type="{http://www.omg.org/space/xtce}ParameterInstanceRefType"/>
 *         <element name="ComparisonOperator" type="{http://www.omg.org/space/xtce}ComparisonOperatorsType"/>
 *         <choice>
 *           <element name="ParameterInstanceRef2" type="{http://www.omg.org/space/xtce}ParameterInstanceRefType"/>
 *           <element name="Value" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         </choice>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ComparisonCheckType", propOrder = { "parameterInstanceRef1", "comparisonOperator", "parameterInstanceRef2", "value" }) public class ComparisonCheckType { @XmlElement(name = "ParameterInstanceRef1", required = true) protected ParameterInstanceRefType parameterInstanceRef1; @XmlElement(name = "ComparisonOperator", required = true) protected String comparisonOperator; @XmlElement(name = "ParameterInstanceRef2") protected ParameterInstanceRefType parameterInstanceRef2; @XmlElement(name = "Value") protected String value; /** * Gets the value of the parameterInstanceRef1 property. * * @return * possible object is * {@link ParameterInstanceRefType } * */ public ParameterInstanceRefType getParameterInstanceRef1() { return parameterInstanceRef1; } /** * Sets the value of the parameterInstanceRef1 property. * * @param value * allowed object is * {@link ParameterInstanceRefType } * */ public void setParameterInstanceRef1(ParameterInstanceRefType value) { this.parameterInstanceRef1 = value; } /** * Gets the value of the comparisonOperator property. * * @return * possible object is * {@link String } * */ public String getComparisonOperator() { return comparisonOperator; } /** * Sets the value of the comparisonOperator property. * * @param value * allowed object is * {@link String } * */ public void setComparisonOperator(String value) { this.comparisonOperator = value; } /** * Gets the value of the parameterInstanceRef2 property. * * @return * possible object is * {@link ParameterInstanceRefType } * */ public ParameterInstanceRefType getParameterInstanceRef2() { return parameterInstanceRef2; } /** * Sets the value of the parameterInstanceRef2 property. * * @param value * allowed object is * {@link ParameterInstanceRefType } * */ public void setParameterInstanceRef2(ParameterInstanceRefType value) { this.parameterInstanceRef2 = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy