Package com.aspectran.core.util.apon
Class AponFormat
- java.lang.Object
-
- com.aspectran.core.util.apon.AponFormat
-
- Direct Known Subclasses:
AponReader,AponWriter
public class AponFormat extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected static charCOMMENT_LINE_STARTprotected static charCURLY_BRACKET_CLOSEprotected static charCURLY_BRACKET_OPENprotected static java.lang.StringDEFAULT_INDENT_STRINGprotected static charDOUBLE_QUOTE_CHARprotected static charESCAPE_CHARprotected static java.lang.StringFALSEprotected static charNAME_VALUE_SEPARATORstatic java.lang.StringNEW_LINEstatic charNEW_LINE_CHARprotected static charNO_CONTROL_CHARprotected static java.lang.StringNULLprotected static charROUND_BRACKET_CLOSEprotected static charROUND_BRACKET_OPENprotected static charSINGLE_QUOTE_CHARprotected static java.lang.StringSPACEprotected static charSPACE_CHARprotected static charSQUARE_BRACKET_CLOSEprotected static charSQUARE_BRACKET_OPENstatic charTEXT_LINE_STARTprotected static java.lang.StringTRUE
-
Constructor Summary
Constructors Constructor Description AponFormat()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.Stringescape(java.lang.String value, boolean noQuote)static java.lang.Stringunescape(java.lang.String value)
-
-
-
Field Detail
-
CURLY_BRACKET_OPEN
protected static final char CURLY_BRACKET_OPEN
- See Also:
- Constant Field Values
-
CURLY_BRACKET_CLOSE
protected static final char CURLY_BRACKET_CLOSE
- See Also:
- Constant Field Values
-
SQUARE_BRACKET_OPEN
protected static final char SQUARE_BRACKET_OPEN
- See Also:
- Constant Field Values
-
SQUARE_BRACKET_CLOSE
protected static final char SQUARE_BRACKET_CLOSE
- See Also:
- Constant Field Values
-
ROUND_BRACKET_OPEN
protected static final char ROUND_BRACKET_OPEN
- See Also:
- Constant Field Values
-
ROUND_BRACKET_CLOSE
protected static final char ROUND_BRACKET_CLOSE
- See Also:
- Constant Field Values
-
TEXT_LINE_START
public static final char TEXT_LINE_START
- See Also:
- Constant Field Values
-
NAME_VALUE_SEPARATOR
protected static final char NAME_VALUE_SEPARATOR
- See Also:
- Constant Field Values
-
COMMENT_LINE_START
protected static final char COMMENT_LINE_START
- See Also:
- Constant Field Values
-
NO_CONTROL_CHAR
protected static final char NO_CONTROL_CHAR
- See Also:
- Constant Field Values
-
DOUBLE_QUOTE_CHAR
protected static final char DOUBLE_QUOTE_CHAR
- See Also:
- Constant Field Values
-
SINGLE_QUOTE_CHAR
protected static final char SINGLE_QUOTE_CHAR
- See Also:
- Constant Field Values
-
ESCAPE_CHAR
protected static final char ESCAPE_CHAR
- See Also:
- Constant Field Values
-
NEW_LINE_CHAR
public static final char NEW_LINE_CHAR
- See Also:
- Constant Field Values
-
NEW_LINE
public static final java.lang.String NEW_LINE
-
DEFAULT_INDENT_STRING
protected static final java.lang.String DEFAULT_INDENT_STRING
- See Also:
- Constant Field Values
-
SPACE
protected static final java.lang.String SPACE
- See Also:
- Constant Field Values
-
SPACE_CHAR
protected static final char SPACE_CHAR
- See Also:
- Constant Field Values
-
NULL
protected static final java.lang.String NULL
- See Also:
- Constant Field Values
-
TRUE
protected static final java.lang.String TRUE
- See Also:
- Constant Field Values
-
FALSE
protected static final java.lang.String FALSE
- See Also:
- Constant Field Values
-
-