代码搜索:comparable
找到约 1,342 项符合「comparable」的源代码
代码结果 1,342
www.eeworm.com/read/480556/1316584
java~1~ userdetails.java~1~
package bookshoppingsys;
import java.sql.Date;
public class UserDetails
implements Comparable {
private int userID = 0;
private String username=null;
private Stri
www.eeworm.com/read/480556/1316595
java~8~ userdetails.java~8~
package bookshoppingsys;
import java.sql.Date;
public class UserDetails
implements Comparable {
private int userID = 0;
private String username=null;
private Stri
www.eeworm.com/read/472524/1409776
java concatenate.java
/*
* The JDK does not have a comparable Reader class
* for SequenceInputStream. So this example can only
* be implemented with a SequenceInputStream. You can
* find the 1.0 version in ../example/C
www.eeworm.com/read/458580/1585456
java albumtype.java
package cn.myvideosite.data.model.bean;
public class AlbumType implements Comparable{
private int typeId;
private String typeName;
public AlbumType() {
super
www.eeworm.com/read/458580/1585458
java register.java
package cn.myvideosite.data.model.bean;
public class Register implements Comparable{
private int id;
private String username;
private String password;
www.eeworm.com/read/452347/1656706
java lineitem.java
package domain;
public class LineItem implements Comparable {
private String productId;
private String productName;
private double price;
private int num;
public int getNum() {
www.eeworm.com/read/222163/4822100
java canonicalpath.java
/*
* Created on Aug 5, 2005
*
*/
package isis.commons.fs;
/**
* Representation of a path string.
* @author sallai
*/
public class CanonicalPath implements Comparable {
private S
www.eeworm.com/read/210208/4951690
java iencodecomparable.java
/**
* Description: The interface for a Comparable object.
*
* @ Author Create/Modi Note
* Xiaofeng Xie May 10, 2005
*
* @version 1.0
* @Since MAOS1.0
*/
package maos
www.eeworm.com/read/174538/5360963
java concatenate.java
/*
* The JDK does not have a comparable Reader class
* for SequenceInputStream. So this example can only
* be implemented with a SequenceInputStream. You can
* find the 1.0 version in ../example/C
www.eeworm.com/read/168239/5447638
java contactdetails.java
/**
* Name, address and telephone number details.
*
* @author David J. Barnes and Michael Kolling.
* @version 2006.03.30
*/
public class ContactDetails implements Comparable
{