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

org.omg.space.xtce.ArgumentTypeSetType 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 java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElements;
import javax.xml.bind.annotation.XmlType;


/**
 * Holds the list of argument type definitions. 
 * 
 * 

Java class for ArgumentTypeSetType complex type. * *

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

 * <complexType name="ArgumentTypeSetType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice maxOccurs="unbounded">
 *         <element name="StringArgumentType" type="{http://www.omg.org/space/xtce}StringDataType"/>
 *         <element name="EnumeratedArgumentType" type="{http://www.omg.org/space/xtce}EnumeratedDataType"/>
 *         <element name="IntegerArgumentType">
 *           <complexType>
 *             <complexContent>
 *               <extension base="{http://www.omg.org/space/xtce}IntegerDataType">
 *                 <sequence>
 *                   <element name="ValidRangeSet" minOccurs="0">
 *                     <complexType>
 *                       <complexContent>
 *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           <sequence>
 *                             <element name="ValidRange" type="{http://www.omg.org/space/xtce}IntegerRangeType" maxOccurs="unbounded"/>
 *                           </sequence>
 *                           <attribute name="validRangeAppliesToCalibrated" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                 </sequence>
 *               </extension>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="BinaryArgumentType" type="{http://www.omg.org/space/xtce}BinaryDataType"/>
 *         <element name="FloatArgumentType">
 *           <complexType>
 *             <complexContent>
 *               <extension base="{http://www.omg.org/space/xtce}FloatDataType">
 *                 <sequence>
 *                   <element name="ValidRangeSet" minOccurs="0">
 *                     <complexType>
 *                       <complexContent>
 *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           <sequence>
 *                             <element name="ValidRange" type="{http://www.omg.org/space/xtce}FloatRangeType" maxOccurs="unbounded"/>
 *                           </sequence>
 *                           <attribute name="validRangeAppliesToCalibrated" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                 </sequence>
 *               </extension>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="BooleanArgumentType" type="{http://www.omg.org/space/xtce}BooleanDataType"/>
 *         <element name="RelativeTimeAgumentType" type="{http://www.omg.org/space/xtce}RelativeTimeDataType"/>
 *         <element name="AbsoluteTimeArgumentType" type="{http://www.omg.org/space/xtce}AbsoluteTimeDataType"/>
 *         <element name="ArrayArgumentType" type="{http://www.omg.org/space/xtce}ArrayDataTypeType"/>
 *         <element name="AggregateArgumentType" type="{http://www.omg.org/space/xtce}AggregateDataType"/>
 *       </choice>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ArgumentTypeSetType", propOrder = { "stringArgumentTypeOrEnumeratedArgumentTypeOrIntegerArgumentType" }) public class ArgumentTypeSetType { @XmlElements({ @XmlElement(name = "StringArgumentType", type = StringDataType.class), @XmlElement(name = "EnumeratedArgumentType", type = EnumeratedDataType.class), @XmlElement(name = "IntegerArgumentType", type = ArgumentTypeSetType.IntegerArgumentType.class), @XmlElement(name = "BinaryArgumentType", type = BinaryDataType.class), @XmlElement(name = "FloatArgumentType", type = ArgumentTypeSetType.FloatArgumentType.class), @XmlElement(name = "BooleanArgumentType", type = BooleanDataType.class), @XmlElement(name = "RelativeTimeAgumentType", type = RelativeTimeDataType.class), @XmlElement(name = "AbsoluteTimeArgumentType", type = AbsoluteTimeDataType.class), @XmlElement(name = "ArrayArgumentType", type = ArrayDataTypeType.class), @XmlElement(name = "AggregateArgumentType", type = AggregateDataType.class) }) protected List stringArgumentTypeOrEnumeratedArgumentTypeOrIntegerArgumentType; /** * Gets the value of the stringArgumentTypeOrEnumeratedArgumentTypeOrIntegerArgumentType property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the stringArgumentTypeOrEnumeratedArgumentTypeOrIntegerArgumentType property. * *

* For example, to add a new item, do as follows: *

     *    getStringArgumentTypeOrEnumeratedArgumentTypeOrIntegerArgumentType().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link StringDataType } * {@link EnumeratedDataType } * {@link ArgumentTypeSetType.IntegerArgumentType } * {@link BinaryDataType } * {@link ArgumentTypeSetType.FloatArgumentType } * {@link BooleanDataType } * {@link RelativeTimeDataType } * {@link AbsoluteTimeDataType } * {@link ArrayDataTypeType } * {@link AggregateDataType } * * */ public List getStringArgumentTypeOrEnumeratedArgumentTypeOrIntegerArgumentType() { if (stringArgumentTypeOrEnumeratedArgumentTypeOrIntegerArgumentType == null) { stringArgumentTypeOrEnumeratedArgumentTypeOrIntegerArgumentType = new ArrayList(); } return this.stringArgumentTypeOrEnumeratedArgumentTypeOrIntegerArgumentType; } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <extension base="{http://www.omg.org/space/xtce}FloatDataType">
     *       <sequence>
     *         <element name="ValidRangeSet" minOccurs="0">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <sequence>
     *                   <element name="ValidRange" type="{http://www.omg.org/space/xtce}FloatRangeType" maxOccurs="unbounded"/>
     *                 </sequence>
     *                 <attribute name="validRangeAppliesToCalibrated" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *       </sequence>
     *     </extension>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "validRangeSet" }) public static class FloatArgumentType extends FloatDataType { @XmlElement(name = "ValidRangeSet") protected ArgumentTypeSetType.FloatArgumentType.ValidRangeSet validRangeSet; /** * Gets the value of the validRangeSet property. * * @return * possible object is * {@link ArgumentTypeSetType.FloatArgumentType.ValidRangeSet } * */ public ArgumentTypeSetType.FloatArgumentType.ValidRangeSet getValidRangeSet() { return validRangeSet; } /** * Sets the value of the validRangeSet property. * * @param value * allowed object is * {@link ArgumentTypeSetType.FloatArgumentType.ValidRangeSet } * */ public void setValidRangeSet(ArgumentTypeSetType.FloatArgumentType.ValidRangeSet value) { this.validRangeSet = value; } /** *

Java class for anonymous complex type. * *

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

         * <complexType>
         *   <complexContent>
         *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
         *       <sequence>
         *         <element name="ValidRange" type="{http://www.omg.org/space/xtce}FloatRangeType" maxOccurs="unbounded"/>
         *       </sequence>
         *       <attribute name="validRangeAppliesToCalibrated" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "validRange" }) public static class ValidRangeSet { @XmlElement(name = "ValidRange", required = true) protected List validRange; @XmlAttribute(name = "validRangeAppliesToCalibrated") protected Boolean validRangeAppliesToCalibrated; /** * Gets the value of the validRange property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the validRange property. * *

* For example, to add a new item, do as follows: *

             *    getValidRange().add(newItem);
             * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FloatRangeType } * * */ public List getValidRange() { if (validRange == null) { validRange = new ArrayList(); } return this.validRange; } /** * Gets the value of the validRangeAppliesToCalibrated property. * * @return * possible object is * {@link Boolean } * */ public boolean isValidRangeAppliesToCalibrated() { if (validRangeAppliesToCalibrated == null) { return true; } else { return validRangeAppliesToCalibrated; } } /** * Sets the value of the validRangeAppliesToCalibrated property. * * @param value * allowed object is * {@link Boolean } * */ public void setValidRangeAppliesToCalibrated(Boolean value) { this.validRangeAppliesToCalibrated = value; } } } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <extension base="{http://www.omg.org/space/xtce}IntegerDataType">
     *       <sequence>
     *         <element name="ValidRangeSet" minOccurs="0">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <sequence>
     *                   <element name="ValidRange" type="{http://www.omg.org/space/xtce}IntegerRangeType" maxOccurs="unbounded"/>
     *                 </sequence>
     *                 <attribute name="validRangeAppliesToCalibrated" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *       </sequence>
     *     </extension>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "validRangeSet" }) public static class IntegerArgumentType extends IntegerDataType { @XmlElement(name = "ValidRangeSet") protected ArgumentTypeSetType.IntegerArgumentType.ValidRangeSet validRangeSet; /** * Gets the value of the validRangeSet property. * * @return * possible object is * {@link ArgumentTypeSetType.IntegerArgumentType.ValidRangeSet } * */ public ArgumentTypeSetType.IntegerArgumentType.ValidRangeSet getValidRangeSet() { return validRangeSet; } /** * Sets the value of the validRangeSet property. * * @param value * allowed object is * {@link ArgumentTypeSetType.IntegerArgumentType.ValidRangeSet } * */ public void setValidRangeSet(ArgumentTypeSetType.IntegerArgumentType.ValidRangeSet value) { this.validRangeSet = value; } /** *

Java class for anonymous complex type. * *

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

         * <complexType>
         *   <complexContent>
         *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
         *       <sequence>
         *         <element name="ValidRange" type="{http://www.omg.org/space/xtce}IntegerRangeType" maxOccurs="unbounded"/>
         *       </sequence>
         *       <attribute name="validRangeAppliesToCalibrated" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "validRange" }) public static class ValidRangeSet { @XmlElement(name = "ValidRange", required = true) protected List validRange; @XmlAttribute(name = "validRangeAppliesToCalibrated") protected Boolean validRangeAppliesToCalibrated; /** * Gets the value of the validRange property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the validRange property. * *

* For example, to add a new item, do as follows: *

             *    getValidRange().add(newItem);
             * 
* * *

* Objects of the following type(s) are allowed in the list * {@link IntegerRangeType } * * */ public List getValidRange() { if (validRange == null) { validRange = new ArrayList(); } return this.validRange; } /** * Gets the value of the validRangeAppliesToCalibrated property. * * @return * possible object is * {@link Boolean } * */ public boolean isValidRangeAppliesToCalibrated() { if (validRangeAppliesToCalibrated == null) { return true; } else { return validRangeAppliesToCalibrated; } } /** * Sets the value of the validRangeAppliesToCalibrated property. * * @param value * allowed object is * {@link Boolean } * */ public void setValidRangeAppliesToCalibrated(Boolean value) { this.validRangeAppliesToCalibrated = value; } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy