diff --git a/continew-starter-core/src/main/java/top/continew/starter/core/constant/CharConstants.java b/continew-starter-core/src/main/java/top/continew/starter/core/constant/CharConstants.java index d19e2b71..e6b5d058 100644 --- a/continew-starter-core/src/main/java/top/continew/starter/core/constant/CharConstants.java +++ b/continew-starter-core/src/main/java/top/continew/starter/core/constant/CharConstants.java @@ -76,6 +76,16 @@ public class CharConstants { */ public static final char DASHED = '-'; + /** + * 加号 {@code '+'} + */ + public static final char PLUS = '+'; + + /** + * 等号 {@code '='} + */ + public static final char EQUALS = '='; + /** * 星号 {@code '*'} */ @@ -146,11 +156,6 @@ public class CharConstants { */ public static final char SINGLE_QUOTE = '\''; - /** - * 等号 {@code '='} - */ - public static final char EQUALS = '='; - /** * 回车符 {@code '\r'} */ diff --git a/continew-starter-core/src/main/java/top/continew/starter/core/constant/StringConstants.java b/continew-starter-core/src/main/java/top/continew/starter/core/constant/StringConstants.java index 340378fa..624bd9b9 100644 --- a/continew-starter-core/src/main/java/top/continew/starter/core/constant/StringConstants.java +++ b/continew-starter-core/src/main/java/top/continew/starter/core/constant/StringConstants.java @@ -94,6 +94,16 @@ public class StringConstants { */ public static final String DASHED = "-"; + /** + * 加号 {@code "+"} + */ + public static final String PLUS = "+"; + + /** + * 等号 {@code "="} + */ + public static final String EQUALS = "="; + /** * 星号 {@code "*"} */ @@ -164,11 +174,6 @@ public class StringConstants { */ public static final String SINGLE_QUOTE = "'"; - /** - * 等号 {@code "="} - */ - public static final String EQUALS = "="; - /** * 回车符 {@code "\r"} */