org.oasisopen.odata.csdl.v4.TFloatConstantExpression Maven / Gradle / Ivy
//
// 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: 2023.05.30 at 11:47:00 AM UTC
//
package org.oasisopen.odata.csdl.v4;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.XmlValue;
/**
* Java class for TFloatConstantExpression complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TFloatConstantExpression">
* <simpleContent>
* <extension base="<http://www.w3.org/2001/XMLSchema>double">
* </extension>
* </simpleContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TFloatConstantExpression", propOrder = {
"value"
})
public class TFloatConstantExpression {
@XmlValue
protected double value;
/**
* 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy