List of usage examples for java.lang Comparable interface-usage
From source file net.sf.jabb.util.bean.DoubleValueBean.java
/** * @author Zhengmao Hu * * a bean that contains two value properties. */ public class DoubleValueBean<V1, V2> implements Serializable, Comparable<DoubleValueBean<V1, V2>> {
From source file com.jivesoftware.os.upena.shared.Key.java
@JsonIgnoreProperties(ignoreUnknown = true) public class Key<T extends Key> implements Comparable<T>, Serializable { private final String key; @JsonCreator
From source file com.cloudera.oryx.rdf.common.tree.TreePath.java
/** * Encapsulates a path from root to a node in the tree. * * @author Sean Owen */ final class TreePath implements Comparable<TreePath> {
From source file org.driftframework.util.IpPortPair.java
/**
* ip and port define obj class
*
* @author qiaofeng
* @version $Id: IpPortPair, v 0.1 2013-6-30 ?2:33:34 Exp $
*/
From source file com.alibaba.otter.shared.common.model.config.data.ExtensionData.java
/** * @author simon 2012-10-16 ?7:46:42 * @version 4.1.0 */ public class ExtensionData implements Serializable, Comparable<ExtensionData> {
From source file com.evolveum.midpoint.web.page.admin.home.dto.AssignmentItemDto.java
/** * @author lazyman */ public class AssignmentItemDto implements Serializable, Comparable<AssignmentItemDto> { public static final String F_TYPE = "type";
From source file mi.RankInfo.java
/**
* The metric inverted file baseline as proposed in Amato et.al. (2014)
* Store the MI file as a Java serialized object.
* @author Debasis
*/
From source file org.projectbuendia.client.models.Form.java
/** An order in the app model. */ @Immutable public final class Form extends Base<String> implements Comparable<Form> { public final String uuid; public final String name; public final String version;
From source file com.graphaware.common.util.ComparableItem.java
/**
* A comparable item.
* <p/>
* Note that equality and hash code depend purely in the item, not on the quantity associated with it.
*
* @param <T> type of the item.
From source file com.itemanalysis.psychometrics.reliability.AbstractScoreReliability.java
/** * Methods implemented by all instances of ScoreReliability. * */ public abstract class AbstractScoreReliability implements ScoreReliability, Comparable<ScoreReliability> {