energyml.prodml2_0.EndpointQualifiedDateTime Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of energyml-prodml20 Show documentation
Show all versions of energyml-prodml20 Show documentation
API to interract with energyml (resqml, witml, prodml)
//
// 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.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* A timestamp value used for min/max query parameters related to "growing objects". The meaning of the endpoint of an interval can be modified by the endpoint attribute.
*
* Java class for EndpointQualifiedDateTime complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="EndpointQualifiedDateTime">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="endpoint" type="energyml.prodml2_0.EndpointQualifier" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "EndpointQualifiedDateTime")
public class EndpointQualifiedDateTime {
@XmlAttribute(name = "endpoint")
protected EndpointQualifier endpoint;
/**
* Gets the value of the endpoint property.
*
* @return
* possible object is
* {@link EndpointQualifier }
*
*/
public EndpointQualifier getEndpoint() {
return endpoint;
}
/**
* Sets the value of the endpoint property.
*
* @param value
* allowed object is
* {@link EndpointQualifier }
*
*/
public void setEndpoint(EndpointQualifier value) {
this.endpoint = value;
}
}