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

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

The newest version!
package com.heliorm.def;

import com.heliorm.Field;

/**
 * A field representing a enum value
 *
 * @param  Object type
 * @author gideon
 */
public interface EnumField< O, C extends Enum> extends Field, WithEquals, WithIn, WithIs {

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


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy