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

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

The newest version!
package com.heliorm.def;

import com.heliorm.Field;

public interface FieldOrder {

    default Direction getDirection() {
        return Direction.ASC;
    }

    Field getField();

    enum Direction {
        ASC, DESC
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy