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

energyml.common2_1.FloatingPointConstantArray Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2022.10.13 at 08:02:05 PM UTC 
//


package energyml.common2_1;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * Represents an array of double values where all values are identical. This an optimization for which an array of explicit double values is not required.
 * 
 * 

Java class for FloatingPointConstantArray complex type. * *

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

 * <complexType name="FloatingPointConstantArray">
 *   <complexContent>
 *     <extension base="{http://www.energistics.org/energyml/data/commonv2}AbstractFloatingPointArray">
 *       <sequence>
 *         <element name="Value" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *         <element name="Count" type="energyml.common2_1.PositiveLong"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FloatingPointConstantArray", propOrder = { "value", "count" }) public class FloatingPointConstantArray extends AbstractFloatingPointArray { @XmlElement(name = "Value") protected double value; @XmlElement(name = "Count") protected long count; /** * Gets the value of the value property. * */ public double getValue() { return value; } /** * Sets the value of the value property. * */ public void setValue(double value) { this.value = value; } /** * Gets the value of the count property. * */ public long getCount() { return count; } /** * Sets the value of the count property. * */ public void setCount(long value) { this.count = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy