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

org.omg.space.xtce.ByteOrderType 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.math.BigInteger;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * An ordered list of bytes where the order of the bytes is in stream order.  Each byte has an attribute giving its significance.
 * 
 * 

Java class for ByteOrderType complex type. * *

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

 * <complexType name="ByteOrderType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence maxOccurs="unbounded" minOccurs="2">
 *         <element name="Byte">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <attribute name="byteSignificance" use="required" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ByteOrderType", propOrder = { "_byte" }) public class ByteOrderType { @XmlElement(name = "Byte", required = true) protected List _byte; /** * Gets the value of the byte 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 byte property. * *

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

     *    getByte().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ByteOrderType.Byte } * * */ public List getByte() { if (_byte == null) { _byte = new ArrayList(); } return this._byte; } /** *

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">
     *       <attribute name="byteSignificance" use="required" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class Byte { @XmlAttribute(name = "byteSignificance", required = true) @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger byteSignificance; /** * Gets the value of the byteSignificance property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getByteSignificance() { return byteSignificance; } /** * Sets the value of the byteSignificance property. * * @param value * allowed object is * {@link BigInteger } * */ public void setByteSignificance(BigInteger value) { this.byteSignificance = value; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy