|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<AutoMappingBehavior>
org.apache.ibatis.session.AutoMappingBehavior
public enum AutoMappingBehavior
Specifies if and how MyBatis should automatically map columns to fields/properties.
| Enum Constant Summary | |
|---|---|
FULL
Will auto-map result mappings of any complexity (containing nested or otherwise). |
|
NONE
Disables auto-mapping. |
|
PARTIAL
Will only auto-map results with no nested result mappings defined inside. |
|
| Method Summary | |
|---|---|
static AutoMappingBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AutoMappingBehavior[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final AutoMappingBehavior NONE
public static final AutoMappingBehavior PARTIAL
public static final AutoMappingBehavior FULL
| Method Detail |
|---|
public static AutoMappingBehavior[] values()
for (AutoMappingBehavior c : AutoMappingBehavior.values()) System.out.println(c);
public static AutoMappingBehavior valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||