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.vrem.wifianalyzer.settings.Data.java

class Data implements Comparable<Data> {
    private final String code;
    private final String name;

    Data(@NonNull String code, @NonNull String name) {
        this.code = code;

From source file org.zephyrsoft.trackworktime.report.TimeSumsHolder.java

/**
 * Holds the data for reporting.
 * 
 * @author Mathis Dirksen-Thedens
 */
public class TimeSumsHolder implements Comparable<TimeSumsHolder> {

From source file ca.uhn.fhir.jpa.dao.HistoryTuple.java

class HistoryTuple implements Comparable<HistoryTuple> {

    private Long myId;
    private boolean myIsHistory;
    private Date myUpdated;

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

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

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

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

From source file com.caricah.iotracah.bootstrap.system.BaseSystemHandler.java

/**
 *
 * All plugins that perform/interact with client related work are
 * started from this point. <code>BaseSystemHandler</code> plugins
 * provide bindings to configure, initiate and terminate the plugin.
 *

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

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

From source file mx.ecosur.multigame.manantiales.entity.ManantialesMove.java

@Entity
public class ManantialesMove extends GridMove implements Comparable {

    private static final long serialVersionUID = 1L;

    private boolean swap;

From source file net.sf.sze.model.stammdaten.Klasse.java

/**
 * Beschreibt eine Schulklasse.
 */
@Entity
@Table(name = "klasse")
public class Klasse extends RevisionModel implements Serializable, Comparable<Klasse> {

From source file org.openmrs.module.reporting.dataset.DataSetColumn.java

/**
 * A DataSetColumn is a generic way to store the information that
 * makes up a column in a DataSet.
 */
public class DataSetColumn implements Comparable<DataSetColumn>, Serializable {