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.sakaiproject.profile2.model.MessageThread.java

/**
 * MessageThread.java
 * 
 * An object to represent info about a message thread
 * This is a persistent Hibernate model
 * 

From source file com.jivesoftware.os.upena.amza.shared.UpenaRingHost.java

public class UpenaRingHost implements Comparable<UpenaRingHost>, Serializable {

    private final String host;
    private final int port;

    @JsonCreator

From source file io.confluent.kafka.schemaregistry.storage.SchemaRegistryKey.java

public abstract class SchemaRegistryKey implements Comparable<SchemaRegistryKey> {

    @Min(0)
    protected int magicByte;
    @NotEmpty
    protected SchemaRegistryKeyType keyType;

From source file io.confluent.kafka.schemaregistry.client.rest.entities.Schema.java

public class Schema implements Comparable<Schema> {
    private String subject;
    private Integer version;
    private Integer id;
    private String schema;

From source file com.medlog.webservice.vo.pairs.ToneKeyValuePair.java

/**
 *
 * @author westy
 */
public class ToneKeyValuePair implements Comparable<ToneKeyValuePair>, Serializable {

From source file com.github.veqryn.net.Ip4.java

/**
 * Light weight immutable IPv4 type,
 * which implements hashCode, equals, Comparable, and Serializable.
 * Some methods and method signatures influenced by org.apache.commons.net.util.SubnetUtils
 *
 * <pre>

From source file com.sammyun.plugin.StoragePlugin.java

/**
 * Plugin - 
 * 
 * @author Sencloud Team
 * @version 3.0
 */

From source file org.drools.planner.examples.examination.domain.PeriodHardConstraint.java

/**
 * @author Geoffrey De Smet
 */
@XStreamAlias("PeriodHardConstraint")
public class PeriodHardConstraint extends AbstractPersistable implements Comparable<PeriodHardConstraint> {

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

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

From source file io.netlibs.bgp.protocol.capabilities.Capability.java

/**
 * base class for all optional BGP4 protocol capabilities
 * 
 * @author Rainer Bieniek (Rainer.Bieniek@web.de)
 *
 */