Package com.github.yulichang.method
Enum SqlMethod
- All Implemented Interfaces:
Serializable,Comparable<SqlMethod>,java.lang.constant.Constable
- Since:
- 2021/1/15
- Author:
- yulichang
- See Also:
-
SqlMethod
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription连表删除连表逻辑删除连表查询连表更新连表逻辑更新 (会更新null字段) -
Field Summary
Fields -
Method Summary
-
Enum Constant Details
-
SELECT_JOIN_COUNT
连表查询 -
SELECT_JOIN_ONE
-
SELECT_JOIN_LIST
-
SELECT_JOIN_PAGE
-
DELETE_JOIN
连表删除 -
LOGIC_DELETE_JOIN
连表逻辑删除 -
UPDATE_JOIN
连表更新 -
UPDATE_JOIN_AND_NULL
连表逻辑更新 (会更新null字段)
-
-
Field Details
-
collect
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-