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

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

The newest version!
package com.heliorm.def;

import com.heliorm.Field;
import com.heliorm.Table;

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

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


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy