File tree Expand file tree Collapse file tree
microsphere-java-core/src/main/java/io/microsphere/constants Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -168,6 +168,16 @@ public interface SymbolConstants {
168168 */
169169 char RIGHT_SQUARE_BRACKET_CHAR = ']' ;
170170
171+ /**
172+ * The left curly brace char : '{'
173+ */
174+ char LEFT_CURLY_BRACE_CHAR = '{' ;
175+
176+ /**
177+ * The right curly brace char : '}'
178+ */
179+ char RIGHT_CURLY_BRACE_CHAR = '}' ;
180+
171181 /**
172182 * The comma symbol : ","
173183 */
@@ -195,6 +205,7 @@ public interface SymbolConstants {
195205
196206 /**
197207 * The double quote symbol : "\""
208+ *
198209 * @see #DOUBLE_QUOTATION
199210 */
200211 String DOUBLE_QUOTE = "\" " ;
@@ -320,4 +331,14 @@ public interface SymbolConstants {
320331 * The right square bracket char : ']'
321332 */
322333 String RIGHT_SQUARE_BRACKET = "]" ;
334+
335+ /**
336+ * The left curly brace : "{"
337+ */
338+ String LEFT_CURLY_BRACE = "{" ;
339+
340+ /**
341+ * The right curly brace : "}"
342+ */
343+ String RIGHT_CURLY_BRACE = "}" ;
323344}
You can’t perform that action at this time.
0 commit comments