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 net.bible.android.control.versification.ConvertibleVerse.java

/** Store a main verse and return it in requested versification after mapping (if map available)
 * 
 * @author Martin Denham [mjdenham at gmail dot com]
 * @see gnu.lgpl.License for license details.<br>
 *      The copyright to this program is held by it's author.
 */

From source file com.eyem.entity.Post.java

/**
 *
 * @author YSF
 */
@Document(collection = "post")
public class Post implements Comparable<Post> {

From source file zw.ac.solusiuniversity.model.EmergencyContact.java

/**
 *
 * @author given
 */
@Document
public class EmergencyContact implements Serializable, Comparable<EmergencyContact> {

From source file org.prorefactor.refactor.FileTarget.java

/** A simple, sortable data structure for file, line, and column.
 * I use this as a key for JDBM records.
 */
public class FileTarget implements Comparable, Serializable {

    /** Filename used for sorting as input, so you might want to input canonicalpath. */

From source file org.rhwlab.BHC.Node.java

/**
 *
 * @author gevirl
 */
public interface Node extends Comparable {
    //    public Dfp getPosteriorDfp();

From source file de.viaboxx.nlstools.model.MBEntry.java

/**
 * Description: <br>
 * User: roman.stumm <br>
 * Date: 14.06.2007 <br>
 * Time: 15:21:57 <br>
 * License: Apache 2.0

From source file ca.frozen.rpicameraviewer.classes.Camera.java

public class Camera implements Comparable, Parcelable {
    // local constants
    private final static String TAG = "Camera";

    // instance variables
    public String network;

From source file zw.ac.solusiuniversity.model.PreviousTrainingType.java

/**
 *
 * @author given
 */
@Document
public class PreviousTrainingType implements Serializable, Comparable<PreviousTrainingType> {

From source file de.ailis.xadrian.data.Race.java

/**
 * A race
 *
 * @author Klaus Reimer (k@ailis.de)
 */
public class Race implements Serializable, Comparable<Race> {

From source file com.opengamma.core.marketdatasnapshot.CurveKey.java

/**
 * A key used to identify a yield curve.
 * <p>
 * This class is immutable and thread-safe.
 */
public class CurveKey extends StructuredMarketDataKey implements Comparable<CurveKey> {