All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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 MetaField
{
    public DoubleField( String name ) {
        super(name);
    }
    
  //private static Log log = LogFactory.getLog( DoubleField.class );

  /**
   * Returns the type of value
   */
  public int getType()
  {
    return DOUBLE;
  }

  /**
   * Gets the type of value object class returned
   */
  public Class getValueClass()
  {
    return Double.class;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy