List of usage examples for java.lang Comparable interface-usage
From source file com.microsoft.tfs.core.clients.sharepoint.WSSNode.java
/**
* An object (document, folder, etc.) in a Sharepoint installation.
*
* @since TEE-SDK-10.1
* @threadsafety thread-compatible
*/
From source file com.intuit.tank.api.model.v1.cloud.UserDetail.java
@XmlRootElement(name = "UserDetail", namespace = Namespace.NAMESPACE_V1) @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UserDetail", namespace = Namespace.NAMESPACE_V1) public class UserDetail implements Serializable, Comparable<UserDetail> { private static final long serialVersionUID = 1L;
From source file org.jboss.qa.brms.performance.examples.common.domain.AbstractPersistable.java
public abstract class AbstractPersistable implements Serializable, Comparable<AbstractPersistable> { @PlanningId protected Long id; protected AbstractPersistable() {
From source file org.openmrs.util.DoubleRange.java
/**
* Represents a bounded or unbounded numeric range. By default the range is closed (ake inclusive)
* on the low end and open (aka exclusive) on the high end: mathematically "[low, high)". (I'm not
* using the similarly-named class from Apache commons because it doesn't implement comparable, and
* because it only allows inclusive bounds.)
*/
From source file com.opengamma.id.ObjectId.java
/**
* An immutable object identifier for an item within the OpenGamma instance.
* <p>
* This identifier is used as a handle within the system to refer to an item uniquely over time.
* All versions of the same object share an object identifier.
* A {@link UniqueId} refers to a single version of an object identifier.
From source file wvec.WordVec.java
/**
* Reads from a word2vec file and expands the
* query with the k-NN set of terms...
* @author dganguly
*/
From source file ch.sentric.QueryKeyValuePair.java
/** * A {@link Comparable} key value pair, representing a query. */ class QueryKeyValuePair implements Comparable<QueryKeyValuePair> { private final String key; private final String value;
From source file org.optaplanner.core.api.score.constraint.ConstraintMatch.java
public abstract class ConstraintMatch implements Serializable, Comparable<ConstraintMatch> { protected final String constraintPackage; protected final String constraintName; protected final int scoreLevel;
From source file com.jaxio.celerio.maven.plugin.bootstrap.SqlConfInfo.java
/** * Holds the information found in sqlconf info file. */ @Getter public class SqlConfInfo implements Comparable<SqlConfInfo> {
From source file de.hasait.clap.impl.CLAPHelpCategoryImpl.java
/** * */ public class CLAPHelpCategoryImpl implements Comparable<CLAPHelpCategoryImpl> { private final int _order;