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

com.heliorm.def.DateField Maven / Gradle / Ivy

The newest version!
package com.heliorm.def;

import com.heliorm.Field;

import java.util.Date;

/**
 * A field representing a Date value
 *
 * @param  Object type
 * @author gideon
 */
public interface DateField< O> extends Field< O, Date>, WithRange, WithEquals, WithIn, WithIs {

    @Override
    default FieldType getFieldType() {
        return FieldType.DATE;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy