1. //And --- 等价于 SQL 中的 and 关键字
public ListfindByHeightAndSex(int height,char sex);
2. // Or --- 等价于 SQL 中的 or 关键字
public ListfindByHeightOrSex(int height,char sex);
3. //Between --- 等价于 SQL 中的 between 关键字
public ListfindByHeightBetween(int min,int max);
4. //LessThan --- 等价于 SQL 中的 "<"
public ListfindByHeightLessThan(int max);
5.//GreaterThan --- 等价于 SQL 中的">"
public ListfindByHeightGreaterThan(int min);
6. //IsNull --- 等价于 SQL 中的 "is null"
public ListfindByNameIsNull();
7. //IsNotNull --- 等价于 SQL 中的 "is not null"
public ListfindByNameIsNotNull();
8.//NotNull --- 与 IsNotNull 等价;
public ListfindByNameNotNull();
9. //Like --- 等价于 SQL 中的 "like",
public ListfindByNameLike(String name);
10. //NotLike --- 等价于 SQL 中的 "not like"
public ListfindByNameNotLike(String name);
11. //OrderBy --- 等价于 SQL 中的 "order by",
public ListfindByNameNotNullOrderByHeightAsc();
12. //Not --- 等价于 SQL 中的 "! ="
public ListfindByNameNot(String name);
13. //In --- 等价于 SQL 中的 "in"
public ListfindByNameIn(String name);
14. //NotIn --- 等价于 SQL 中的 "not in"
public ListfindByNameNotIn(String name);