Example usage for java.lang Comparable interface-usage

List of usage examples for java.lang Comparable interface-usage

Introduction

In this page you can find the example usage for java.lang Comparable interface-usage.

Usage

From source file org.italiangrid.storm.webdav.authz.VOMSVOAuthority.java

public class VOMSVOAuthority implements GrantedAuthority, Comparable<VOMSVOAuthority> {

    /**
      * 
      */
    private static final long serialVersionUID = 1L;

From source file org.displaytag.sample.ReportableListObject.java

/**
 * A test class that has data that looks more like information that comes back in a report.
 * @author epesh
 * @author Fabrizio Giustina
 * @version $Revision: 1.11 $ ($Author: fgiust $)
 */

From source file uk.co.flax.biosolr.ontology.core.ols.terms.Page.java

/**
 * Page metadata from a {@link RelatedTermsResult} lookup result.
 *
 * <p>Created by Matt Pearce on 27/10/15.</p>
 * @author Matt Pearce
 */

From source file com.algoTrader.vo.ib.ConnectionClosed.java

/**
 * TODO: Model Documentation for class ConnectionClosed
 */
public class ConnectionClosed implements Serializable, Comparable<ConnectionClosed> {
    /** The serial version UID of this class. Needed for serialization. */
    private static final long serialVersionUID = -2362756693180652709L;

From source file org.pentaho.aggdes.model.ValidationMessage.java

public class ValidationMessage implements Comparable<ValidationMessage> {

    public enum Type {
        OK, WARNING, ERROR
    };

From source file com.admc.jcreole.marker.BufferMarker.java

/**
 * Inserts CSS class names into the parser output.
 *
 * @author Blaine Simpson (blaine dot simpson at admc dot com)
 * @since 1.1
 */

From source file adalid.core.DisplaySet.java

/**
 * @author Jorge Campins
 */
public class DisplaySet extends AbstractArtifact implements Comparable<DisplaySet> {

    private static final String EOL = "\n";

From source file org.openpplsoft.pt.RecFldName.java

/**
 * Represents a PeopleTools record field.
 */
public class RecFldName implements Comparable<RecFldName> {

    private static Logger log = LogManager.getLogger(RecFldName.class.getName());

From source file springfox.documentation.swagger.web.SwaggerResource.java

public class SwaggerResource implements Comparable<SwaggerResource> {
    private String name;
    private String location;
    private String swaggerVersion;

    @JsonProperty("name")

From source file org.codinjutsu.tools.mongo.model.MongoCollection.java

public class MongoCollection implements Comparable<MongoCollection> {

    private final String name;
    private final String databaseName;

    public MongoCollection(String name, String databaseName) {