public enum ReturnType extends Enum<ReturnType>
| Enum Constant and Description |
|---|
RT_AFTER_MODIFY
返回修改列的数据(如原子加的结果返回)。
|
RT_NONE
不返回任何行数据。
|
RT_PK
返回PK列的数据。
|
| Modifier and Type | Method and Description |
|---|---|
static ReturnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReturnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReturnType RT_NONE
public static final ReturnType RT_PK
public static final ReturnType RT_AFTER_MODIFY
public static ReturnType[] values()
for (ReturnType c : ReturnType.values()) System.out.println(c);
public static ReturnType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024. All Rights Reserved.