List of usage examples for java.lang Comparable interface-usage
From source file org.geoserver.security.DataAccessRule.java
/**
* Represents a data access rule: identifies a workspace, a layer, an access mode, and the set of
* roles that are allowed to access it
* <p>Mind, two rules are considered equal if the address the same data, if you need full
* comparison, use {@link #equalsExact(DataAccessRule)}</p>
*/
From source file net.sf.sze.model.zeugnisconfig.BemerkungsBaustein.java
/** * Textbausteine fr Bemerkungen. * */ @Entity @Table(name = "bemerkungs_baustein", uniqueConstraints = @UniqueConstraint(columnNames = "name", name = "UK_BEM_BAUSTEIN_NAME"))
From source file org.openamf.invoker.RankedMethod.java
/** * @author Jason Calabrese <jasonc@missionvi.com> * @version $Revision: 1.23 $, $Date: 2005/06/14 21:32:59 $ */ public class RankedMethod implements Comparable {
From source file org.carewebframework.help.HelpTopic.java
/** * Represents a single help topic */ public class HelpTopic implements Comparable<HelpTopic> { private final URL url;
From source file net.sf.sze.model.zeugnis.SchulamtsBemerkung.java
/** * Schulamtsanmerkungen. * */ @Entity @Table(name = "schulamts_bemerkung")
From source file org.brickhouse.datatype.HDate.java
public class HDate extends HValue implements Comparable<HDate> { private final int year; private final int month; private final int day; public HDate(int year, int month, int day) {
From source file org.cybergarage.round.Node.java
public class Node implements Comparable<Node> { public static int DEFAULT_PORT = 38400; private String host; private int port; private JSONObject resObj;
From source file org.diffkit.diff.engine.DKDiff.java
/** * @author jpanico */ public interface DKDiff extends Comparable<DKDiff> { public enum Kind { ROW_DIFF, COLUMN_DIFF, BOTH;
From source file org.eclipse.skalli.model.Member.java
/** * Model entity representing the unique identifier of a user. */ public class Member implements Comparable<Member> { @PropertyName(position = 0)
From source file com.opengamma.id.ExternalIdWithDates.java
/**
* An immutable external identifier with validity dates.
* <p>
* This class is used to restrict the validity of an {@link ExternalId external identifier}.
* <p>
* This class is immutable and thread-safe.