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 uk.ac.ebi.ep.ebeye.search.Entry.java

/**
 * Represents the result object from Enzyme Portal domain in Ebeye Search Index
 *
 * @author joseph
 *
 */

From source file mx.ecosur.multigame.grid.entity.GridPlayer.java

@Entity
public abstract class GridPlayer implements Comparable, GamePlayer {

    private static final long serialVersionUID = -1893870933080422147L;

    private int id;

From source file org.wangbiao.s2sh.common.model.BaseModel.java

/**
 * Created by Wang Biao on 15/10/27.
 */
@MappedSuperclass
public class BaseModel implements Serializable, Comparable<BaseModel> {

From source file com.baidu.terminator.manager.form.StubForm.java

public class StubForm implements Comparable<StubForm> {

    @Size(min = 1, message = "conditions size should greater than zero!")
    private List<StubCondition> conditions = new ArrayList<StubCondition>();

    private int delay;

From source file org.openmrs.module.kenyaemr.identifier.IdentifierDescriptor.java

/**
 * Describes how an identifier type can be used in the EMR
 */
public class IdentifierDescriptor implements Comparable<IdentifierDescriptor> {

    private String identifierTypeUuid;

From source file com.napkindrawing.dbversion.Revision.java

public class Revision implements Comparable<Revision> {

    private Version version;
    private String name = "";
    private String upgradeScriptTemplate;
    private String upgradeScriptTemplateChecksum;

From source file it.readbeyond.minstrel.librarian.ZipAsset.java

public class ZipAsset implements Comparable<ZipAsset>, JSONPrintable {

    String path = ""; //
    HashMap<String, String> metadata = new HashMap<String, String>(); //

    public ZipAsset(String path, HashMap<String, String> metadata) {

From source file org.androidannotations.rest.ClientWithWrongInterface.java

@Rest(converters = { MappingJacksonHttpMessageConverter.class })
public interface ClientWithWrongInterface extends Comparable<String> {

}

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

public class VOMSVOMapAuthority implements GrantedAuthority, Comparable<VOMSVOMapAuthority> {

    /**
     * 
     */
    private static final long serialVersionUID = -455904635960596363L;

From source file org.eclipse.virgo.ide.bundlerepository.domain.LibraryArtefact.java

/**
 * A library stored in BRITS. A library is a collection of bundles grouped under a common name, id, and version.
 * @author acolyer
 */
public class LibraryArtefact extends Artefact implements Comparable<LibraryArtefact> {