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.drools.planner.examples.common.domain.AbstractPersistable.java

public abstract class AbstractPersistable implements Serializable, Comparable<AbstractPersistable> {

    protected Long id;

    public Long getId() {
        return id;

From source file org.eclipse.jubula.tools.internal.utils.generator.ToolkitInfo.java

/**
 * @author BREDEX GmbH
 * @created Jul 4, 2007
 */
public class ToolkitInfo extends Info implements Comparable {

From source file com.microsoft.tfs.client.common.ui.framework.diagnostics.cache.DataProviderWrapper.java

public class DataProviderWrapper implements Comparable {
    private static final Log log = LogFactory.getLog(DataProviderWrapper.class);

    private final DataProviderInfo dataProviderInfo;
    private boolean available;
    private Object data;

From source file org.j2free.http.HttpCallFuture.java

/**
 * Extends FutureTask so that instances of HttpCallTask can be ordered by
 * priority in a PriorityBlockingQueue in the QueuedHttpCallService.
 *
 * @author Ryan Wilson
 */

From source file agendapoo.Model.Atividade.java

/**
 * Classe modelo de Atividade com todos os atributos referentes a mesma.
 * @author kieckegard
 */
public class Atividade implements Serializable, Comparable<Atividade> {
    private UUID id;

From source file com.intuit.tank.project.VariableEntry.java

/**
 * VariableEntry
 * 
 * @author dangleton
 * 
 */

From source file st.happy_camper.hadoop.aggregate.Access.java

/**
 * @author ueshin
 */
public class Access implements Comparable<Access> {

    private final String ip;

From source file com.ebuddy.cassandra.TypeReference.java

/**
 * This generic abstract class is used for obtaining full generics type information
 * by sub-classing.
 *
 * This class is a copy of com.fasterxml.jackson.core.type.TypeReference in jackson,
 * which is turn is based on ideas from

From source file sf.wicketlearningapplication.domain.User.java

@Entity
@NamedQuery(name = "authentication", query = "select u from User u where u.username = :username and u.password = :password")
public class User implements Serializable, Comparable<User> {

    private static final long serialVersionUID = -2683387699863424341L;

From source file org.trpr.platform.servicefw.impl.spring.web.ResourceInfo.java

public class ResourceInfo implements Comparable<ResourceInfo> {

    private final String url;

    private final RequestMethod method;