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

energyml.prodml2_0.TimeSeriesThreshold 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.prodml2_0;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import energyml.common2_1.TimeMeasure;


/**
 * Defines a value threshold window and the cumulative time duration that the data was within that window.
 * 
 * 

Java class for TimeSeriesThreshold complex type. * *

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

 * <complexType name="TimeSeriesThreshold">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Duration" type="energyml.common2_1.TimeMeasure"/>
 *         <element name="ThresholdMinimum" type="energyml.prodml2_0.EndpointQuantity" minOccurs="0"/>
 *         <element name="ThresholdMaximum" type="energyml.prodml2_0.EndpointQuantity" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TimeSeriesThreshold", propOrder = { "duration", "thresholdMinimum", "thresholdMaximum" }) public class TimeSeriesThreshold { @XmlElement(name = "Duration", required = true) protected TimeMeasure duration; @XmlElement(name = "ThresholdMinimum") protected EndpointQuantity thresholdMinimum; @XmlElement(name = "ThresholdMaximum") protected EndpointQuantity thresholdMaximum; /** * Gets the value of the duration property. * * @return * possible object is * {@link TimeMeasure } * */ public TimeMeasure getDuration() { return duration; } /** * Sets the value of the duration property. * * @param value * allowed object is * {@link TimeMeasure } * */ public void setDuration(TimeMeasure value) { this.duration = value; } /** * Gets the value of the thresholdMinimum property. * * @return * possible object is * {@link EndpointQuantity } * */ public EndpointQuantity getThresholdMinimum() { return thresholdMinimum; } /** * Sets the value of the thresholdMinimum property. * * @param value * allowed object is * {@link EndpointQuantity } * */ public void setThresholdMinimum(EndpointQuantity value) { this.thresholdMinimum = value; } /** * Gets the value of the thresholdMaximum property. * * @return * possible object is * {@link EndpointQuantity } * */ public EndpointQuantity getThresholdMaximum() { return thresholdMaximum; } /** * Sets the value of the thresholdMaximum property. * * @param value * allowed object is * {@link EndpointQuantity } * */ public void setThresholdMaximum(EndpointQuantity value) { this.thresholdMaximum = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy