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

com.heliorm.impl.NumberFieldPart Maven / Gradle / Ivy

The newest version!
package com.heliorm.impl;

import com.heliorm.Field;
import com.heliorm.Table;
import com.heliorm.def.WithEquals;
import com.heliorm.def.WithIn;
import com.heliorm.def.WithIs;
import com.heliorm.def.WithRange;

/**
 * @author gideon
 */
public abstract class NumberFieldPart extends FieldPart implements
        WithEqualsPart, WithRangePart,
        WithInPart, WithIsPart, Field, WithRange, WithEquals, WithIn, WithIs {

    public NumberFieldPart(Table table, FieldType fieldType, Class javaType, String javaName) {
        super(table, fieldType, javaType, javaName);
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy