List of usage examples for java.lang Comparable interface-usage
From source file org.sakaiproject.scorm.entity.ScormEntity.java
/** * Wrapper to hold only the fields that we want to return to the EntityBroker. * * @author bjones86 */ public class ScormEntity implements Comparable<ScormEntity> {
From source file com.feedhenry.sync.model.ShoppingItem.java
/** * The shopping item is the model item that we are synchonizing. */ public class ShoppingItem implements Serializable, Comparable<ShoppingItem> { private String id;
From source file org.nuclos.client.wizard.util.DefaultValue.java
public class DefaultValue implements Comparable<DefaultValue> { Integer iId; String sValue; public DefaultValue(Integer iId, String value) {
From source file com.ijuru.kwibuka.WordSequence.java
/** * A word sequence with associated score */ public class WordSequence extends ArrayList<String> implements Comparable<WordSequence> { private int score;
From source file com.redhat.rhn.domain.rhnpackage.PackageName.java
/** * PackageName * @version $Rev$ */ public class PackageName implements Comparable<PackageName> {
From source file com.safetys.framework.jmesa.limit.Sort.java
/**
* <p>
* An immutable class that is used to sort the rows that are returned for a
* table. The property is the Bean (Or Map) attribute that will used to sort the
* results based on the order. Or, in other words, it is simply the column that
* the user is trying to sort in the order specified.
From source file net.sf.jabb.util.bean.TripleValueBean.java
/** * @author Zhengmao Hu * * a bean that contains three value properties. */ public class TripleValueBean<V1, V2, V3> implements Serializable, Comparable<TripleValueBean<V1, V2, V3>> {
From source file org.optaplanner.core.api.score.constraint.ConstraintMatchTotal.java
public abstract class ConstraintMatchTotal implements Serializable, Comparable<ConstraintMatchTotal> { protected final String constraintPackage; protected final String constraintName; protected final int scoreLevel;
From source file org.mule.tools.apikit.output.GenerationModel.java
public class GenerationModel implements Comparable<GenerationModel> { private static final char FLOW_NAME_SEPARATOR = ':'; public static final String DEFAULT_TEXT = "#[NullPayload.getInstance()]"; private final String verb;
From source file com.twitter.hraven.AppKey.java
public class AppKey implements Comparable<Object> { /** * The cluster on which the application ran */ protected final String cluster;