List of usage examples for java.lang Comparable interface-usage
From source file org.eclipse.vorto.core.api.model.model.ModelId.java
public class ModelId implements Comparable<ModelId> { private static final String UNDERSCORE = "_"; private ModelType modelType; private String name; private String namespace;
From source file org.leopub.mat.model.PersonalInfoItem.java
public class PersonalInfoItem implements Comparable<PersonalInfoItem> { public enum InfoType { text, select, date, }; private String mKey;
From source file org.mbs3.duplicatefinder.FileEntry.java
public class FileEntry implements Comparable { private String crc; private File file; public FileEntry(File file) {
From source file searchengine.urlnormalization.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.italiangrid.storm.webdav.authz.VOMSFQANAuthority.java
public class VOMSFQANAuthority implements GrantedAuthority, Comparable<VOMSFQANAuthority> { /** * */ private static final long serialVersionUID = 1L;
From source file maspack.fileutil.vfs.SimpleUserAuthenticator.java
public class SimpleUserAuthenticator implements UserAuthenticator, Comparable<SimpleUserAuthenticator> {
String username;
String domain;
String password;
From source file org.kie.workbench.common.forms.migration.legacy.model.DataHolder.java
public class DataHolder implements Comparable { private String id; private String inputId; private String outputId; private String type;
From source file org.yestech.lib.currency.Money.java
/**
* Represents an immutable monetary value. By default it assumes {@link Locale#US} and
* the corresponding Currency.
*
* @author Artie Copeland
* @version $Revision: $
From source file com.homeadvisor.kafdrop.model.ConsumerVO.java
public class ConsumerVO implements Comparable<ConsumerVO> { private String groupId; private Map<String, ConsumerTopicVO> topics = new TreeMap<>(); private List<ConsumerRegistrationVO> activeInstances = new ArrayList<>(); public ConsumerVO(String groupId) {
From source file com.bna.ezrxlookup.domain.DrugLabel.java
/** * DAta transfer object for drug label. */ public class DrugLabel extends BaseEntity implements Comparable<DrugLabel> {