Skip to content

Commit 63b728a

Browse files
committed
Update SymbolConstants.java
1 parent 16a6518 commit 63b728a

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

microsphere-java-core/src/main/java/io/microsphere/constants/SymbolConstants.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)