Enum Class BuildControl
- All Implemented Interfaces:
Serializable,Comparable<BuildControl>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription如果参数值为 空白字符串 " " 则跳过添加 只是为了简化书写如果参数值为 空列表 (如 List 或 Array) 则跳过添加 只是为了简化书写如果参数值为 空字符串 "" 则跳过添加 只是为了简化书写如果参数值为 null 则跳过添加 只是为了简化书写使用表达式 (不进行转换)使用表达式值 (不进行转换) -
Method Summary
Modifier and TypeMethodDescriptionstatic booleancheckUseExpression(BuildControl... controls) static booleancheckUseExpressionValue(BuildControl... controls) static BuildControlReturns the enum constant of this class with the specified name.static BuildControl[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SKIP_IF_NULL
如果参数值为 null 则跳过添加 只是为了简化书写 -
SKIP_IF_EMPTY_LIST
如果参数值为 空列表 (如 List 或 Array) 则跳过添加 只是为了简化书写 -
SKIP_IF_EMPTY_STRING
如果参数值为 空字符串 "" 则跳过添加 只是为了简化书写 -
SKIP_IF_BLANK_STRING
如果参数值为 空白字符串 " " 则跳过添加 只是为了简化书写 -
USE_EXPRESSION
使用表达式 (不进行转换) -
USE_EXPRESSION_VALUE
使用表达式值 (不进行转换)
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
checkUseExpression
-
checkUseExpressionValue
-