
com.draagon.meta.field.DoubleField 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 Double Field.
*
* @version 2.0
* @author Doug Mealing
*/
@SuppressWarnings("serial")
public class DoubleField extends PrimitiveField
{
public final static String SUBTYPE_DOUBLE = "double";
public DoubleField( String name ) {
super( SUBTYPE_DOUBLE, name, DataTypes.DOUBLE );
}
/**
* Manually Create a DoubleField
* @param name Name of the field
* @return New DoubleField
*/
public static DoubleField create( String name ) {
DoubleField f = new DoubleField( name );
return f;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy