public enum MethodType extends Enum<MethodType>
| 枚举常量和说明 |
|---|
COUNT
计数
|
DELETE
删除方法
|
FIND
查找方法
|
PAGE
分页方法
|
RAND
随机查询
|
SAVE
insert方法
|
UPDATE
update方法
|
public static final MethodType SAVE
public static final MethodType DELETE
public static final MethodType FIND
public static final MethodType COUNT
public static final MethodType PAGE
public static final MethodType UPDATE
public static final MethodType RAND
public static MethodType[] values()
for (MethodType c : MethodType.values()) System.out.println(c);
public static MethodType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String getName()
Copyright © 2018. All rights reserved.