public static enum OrmValueUtils.BeanValueType extends Enum<OrmValueUtils.BeanValueType>
Enum Constant and Description |
---|
fast
快速,使用pull和push(暂时未实现)
|
field
按字段
|
method
按方法(默认)
|
other
其他方法(备用,未实现)
|
reflectasm
按reflectasm方法
|
Modifier and Type | Method and Description |
---|---|
static OrmValueUtils.BeanValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrmValueUtils.BeanValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrmValueUtils.BeanValueType field
public static final OrmValueUtils.BeanValueType method
public static final OrmValueUtils.BeanValueType reflectasm
public static final OrmValueUtils.BeanValueType fast
public static final OrmValueUtils.BeanValueType other
public static OrmValueUtils.BeanValueType[] values()
for (OrmValueUtils.BeanValueType c : OrmValueUtils.BeanValueType.values()) System.out.println(c);
public static OrmValueUtils.BeanValueType 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 © 2020. All rights reserved.