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

step.core.collections.IndexField Maven / Gradle / Ivy

The newest version!
package step.core.collections;

public class IndexField {

    public final String fieldName;
    public final Order order;
    public final Class fieldClass;

    public IndexField(String fieldName, Order order, Class fieldClass) {
        this.fieldName = fieldName;
        this.order = order;
        this.fieldClass = fieldClass;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy