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

com.draagon.meta.field.IntegerField 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.*;

/**
 * An Integer Field.
 *
 * @version 2.0
 * @author Doug Mealing
 */
@SuppressWarnings("serial")
public class IntegerField extends MetaField {
    //private static Log log = LogFactory.getLog( IntegerField.class );

    public IntegerField(String name) {
        super(name);
    }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy