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.carewebframework.vista.plugin.patientgoals.model.GoalType.java

/**
 * Model object for a goal type.
 */
public class GoalType implements Comparable<GoalType> {

    private final String name;

From source file org.seedstack.business.api.domain.BaseValueObject.java

/**
 * This class is the inheritance base for ValueObject implementations. It offers specific {@code equals()} and
 * {@code hashCode()} methods.
 */
public abstract class BaseValueObject implements ValueObject, Serializable, Comparable<BaseValueObject> {

From source file com.enonic.cms.core.structure.menuitem.section.SectionContentEntity.java

public class SectionContentEntity implements Serializable, Comparable<SectionContentEntity> {
    private SectionContentKey key;

    private int order;

    private Date timestamp;

From source file kr.ac.cau.mecs.cass.cae.ActionScoreEntity.java

/**
 *
 * @author Administrator
 */
public class ActionScoreEntity implements Comparable<ActionScoreEntity> {
    private DBCAUEntity cau;

From source file net.sf.sze.model.zeugnis.Bemerkung.java

/**
 * Bemerkungen zu Zeugnissen.
 *
 */
@Entity
@Table(name = "bemerkung")

From source file Money.java

public class Money implements Comparable, java.io.Serializable {

    private static final String ZERO_STRING = "0";
    private static final Money ZERO_MONEY = new Money(ZERO_STRING);

    private BigDecimal delegate;

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

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

From source file com.bellman.bible.service.db.mynote.MyNoteDto.java

/**
 * DTO for MyNote
 *
 * @author John D. Lewis [balinjdl at gmail dot com]
 * @author Martin Denham [mjdenham at gmail dot com]
 * @see gnu.lgpl.License for license details.<br>

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

/**
 * A single item on the factory factory shopping list
 * 
 * @author Klaus Reimer (k@ailis.de)
 */
public class ShoppingListItem implements Serializable, Comparable<ShoppingListItem> {

From source file org.mule.module.google.spreadsheet.model.Cell.java

/**
 * This class represents a cell in a spreadsheet.
 * 
 * @author mariano.gonzalez@mulesoft.com
 */
public class Cell implements Comparable<Cell> {