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

com.heliorm.impl.OrderPart Maven / Gradle / Ivy

The newest version!
package com.heliorm.impl;

public class OrderPart {
    private final Direction direction;
    private final FieldPart< O, ?> field;
    public OrderPart(Direction direction, FieldPart< O, ?> field) {
        this.direction = direction;
        this.field = field;
    }

    public Direction getDirection() {
        return direction;
    }

    public FieldPart getField() {
        return field;
    }

    public enum Direction {
        ASCENDING, DESCENDING
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy