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 com.twitter.hraven.datasource.VersionInfo.java

public class VersionInfo implements Comparable<VersionInfo> {

    private String version;
    private long timestamp;

    public VersionInfo(String v, long ts) {

From source file edu.northwestern.bioinformatics.studycalendar.web.subject.ScheduleDay.java

/**
 * @author Rhett Sutphin
 */
public class ScheduleDay implements Comparable<ScheduleDay> {
    private Date date;
    private Date today;

From source file mangotiger.bus.Event.java

/** @author Tom Gagnier */
public class Event implements Comparable {

    private final String name;
    private final Map<String, String> attributes = new TreeMap<String, String>();

From source file com.qualogy.qafe.bind.core.pattern.IdPattern.java

public abstract class IdPattern implements Comparable {

    public IdPattern() {
        super();
    }

From source file is.merkor.statistics.hibernate.data.LexicalRelationType.java

/**
 * LexicalRelationType maps to the table LEXICAL_RELATION_TYPE in the MerkOr database.
 * It contains a name and a description (which might be more appropriate for display),
 * and a unique id.
 * 
 * @author Anna B. Nikulasdottir

From source file org.eclipse.gyrex.admin.ui.internal.pages.registry.CategoryContribution.java

/**
 * A category which collects page information
 */
public class CategoryContribution implements Comparable<CategoryContribution> {

    private final String id;

From source file net.sf.sze.model.zeugnisconfig.SchulamtsBemerkungsBaustein.java

/**
 * Schler knnen verschieden mter inne haben. Zu diesnen kann man zustzliche
 * Anmerkungen machen.
 *
 */
@Entity

From source file com.jivesoftware.os.upena.shared.Stored.java

@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "objectType")
@JsonSubTypes({ @JsonSubTypes.Type(value = LBKey.class, name = "loadBalancerKey"),
        @JsonSubTypes.Type(value = ClusterKey.class, name = "branchKey"),
        @JsonSubTypes.Type(value = Cluster.class, name = "branch"),
        @JsonSubTypes.Type(value = HostKey.class, name = "hostKey"),
        @JsonSubTypes.Type(value = Host.class, name = "host"),

From source file org.obiba.magma.Coordinate.java

public class Coordinate implements Comparable<Coordinate>, Serializable {

    private static final long serialVersionUID = 8139103526460838188L;

    private static final String[] LATITUDES_KEYS = new String[] { "lat", "latitude", "lt" };

From source file org.openmrs.web.controller.maintenance.SettingsProperty.java

/**
 * Wrapper for {@link GlobalProperty} used in {@link SettingsForm}.
 */
public class SettingsProperty implements Comparable<SettingsProperty> {

    public static final String GENERAL = "General Settings";