
nw.orm.eav.values.DoubleValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nw.orm-h3 Show documentation
Show all versions of nw.orm-h3 Show documentation
Orm wrapper for hibernate supports h3+ to 3.6.10
The newest version!
package nw.orm.eav.values;
import nw.orm.eav.data.EavValue;
// TODO: Auto-generated Javadoc
/**
* The Class DoubleValue.
*/
public class DoubleValue extends EavValue {
/** The Constant serialVersionUID. */
private static final long serialVersionUID = 6558689694028819965L;
/** The value. */
private Double value;
/**
* Gets the value.
*
* @return the value
*/
public Double getValue() {
return value;
}
/**
* Sets the value.
*
* @param value the new value
*/
public void setValue(Double value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy