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

io.github.ashwithpoojary98.clausses.orderbyclauses.OrderByRandom Maven / Gradle / Ivy

The newest version!
package io.github.ashwithpoojary98.clausses.orderbyclauses;

import io.github.ashwithpoojary98.clausses.AbstractClause;
import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class OrderByRandom extends AbstractOrderBy {

    @Override
    public AbstractClause copy() {
        OrderByRandom orderByRandom = new OrderByRandom();
        orderByRandom.setEngine(this.getEngine());
        return orderByRandom;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy