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

com.github.developframework.resource.spring.mybatis.OrderBy Maven / Gradle / Ivy

The newest version!
package com.github.developframework.resource.spring.mybatis;

import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Getter;

/**
 * @author qiushui on 2020-05-28.
 */
@Getter
@AllArgsConstructor(access = AccessLevel.PRIVATE)
public class OrderBy {

    private final String property;

    private final Direction direction;

    @Override
    public String toString() {
        return property + " " + direction;
    }

    public static OrderBy asc(String property) {
        return new OrderBy(property, Direction.ASC);
    }

    public static OrderBy desc(String property) {
        return new OrderBy(property, Direction.DESC);
    }

    public enum Direction {
        ASC, DESC
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy