
com.draagon.meta.field.FloatField Maven / Gradle / Ivy
/*
* Copyright 2004 Draagon Software LLC. All Rights Reserved.
*
* This software is the proprietary information of Draagon Software LLC.
* Use is subject to license terms.
*/
package com.draagon.meta.field;
import com.draagon.meta.*;
/**
* A Float Field.
*
* @version 2.0
* @author Doug Mealing
*/
@SuppressWarnings("serial")
public class FloatField extends MetaField {
//private static Log log = LogFactory.getLog( FloatField.class );
public FloatField(String name) {
super(name);
}
/**
* Returns the type of value
*/
public int getType() {
return FLOAT;
}
/**
* Gets the type of value object class returned
*/
public Class> getValueClass() {
return Float.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy