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 de.hasait.clap.impl.CLAPUsageCategoryImpl.java

/**
 * 
 */
public class CLAPUsageCategoryImpl implements Comparable<CLAPUsageCategoryImpl> {

    private final int _order;

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

public class SAPermission implements GrantedAuthority, Comparable<SAPermission> {

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

From source file org.drools.planner.examples.nqueens.domain.Queen.java

/**
 * @author Geoffrey De Smet
 */
public class Queen extends AbstractPersistable implements Comparable<Queen> {

    private int x;

From source file org.whitesource.agent.hash.HashCalculationResult.java

/**
 * This object holds the various hashes calculated for a single file.
 *
 * @author tom.shapira
 */
public class HashCalculationResult implements Comparable {

From source file org.androidtransfuse.integrationTest.ActivityListItem.java

public class ActivityListItem implements Comparable<ActivityListItem> {

    private Intent intent;
    private String name;

    public ActivityListItem(Intent intent, String name) {

From source file com.facebook.tsdb.tsdash.server.model.DataPoint.java

public class DataPoint implements Comparable<DataPoint> {

    public long ts;
    public double value;

    public DataPoint(long ts, double value) {

From source file org.jboss.windup.metadata.decoration.Interrogation.java

public class Interrogation implements Comparable<Interrogation> {
    private String summary = "";
    private String title = null;

    private int order = 0;

From source file org.jboss.windup.resource.decoration.Interrogation.java

public class Interrogation implements Comparable<Interrogation> {
    private String summary = "";
    private String title = null;

    private int order = 0;

From source file com.delicious.deliciousfeeds4J.beans.Tag.java

/**
 * A simple bean class for holding the values of a tag.
 *
 * @author Patrick Meier
 */
public class Tag implements Serializable, Comparable<Tag> {

From source file com.raulexposito.alarife.upgrader.pojo.Version.java

/**
 * Simple pojo that contains an application version number. This pojo can be easily
 * sorted using 'Collections.sort();'
 *
 * http://www.adictosaltrabajo.com/tutoriales/tutoriales.php?pagina=listas
 */