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

net.intelie.pipes.SortField Maven / Gradle / Ivy

There is a newer version: 0.25.5
Show newest version
package net.intelie.pipes;

import java.io.Serializable;
import java.util.Comparator;

public interface SortField extends Serializable, Scalar {
    Comparator makeComparator(Scope parent);

    Comparable eval(Scope parent, Object obj);

    void validate(ValidationContext context) throws PipeException;
}