Class Constants
- java.lang.Object
-
- org.pepstock.charba.client.commons.Constants
-
public final class Constants extends Object
Contains all constants where values can be used in different packages.- Author:
- Andrea "Stock" Stocchero
-
-
Field Summary
Fields Modifier and Type Field Description static String
AMPERSAND
Constants for AMPERSAND, "&".static String
APOSTROPHE
Constant for APOSTROPHE string, "\'".static String
BLANK
Constant for BLANK, " ".static String
CLOSE_BRACE
Constant for CLOSE brace, "}".static String
CLOSE_ROUND_BRACKET
Constant for CLOSE round bracket, ")".static String
CLOSE_SQUARE_BRACKET
Constant for CLOSE square bracket, "]".static String
COLON
Constant for COLON, ":".static String
COMMA
Constant for COMMA, ",".static String
DOT
Constants for DOT, ".".static String
EMPTY_STRING
Constant for EMPTY string, "".static String
EQ
Constants for EQUALS, "=".static String
GT
Constants for GREATER THAN, ">".static String
LINE_SEPARATOR
Constant for LINE SEPARATOR, "\n".static String
LT
Constants for LESS THAN, "<".static String
MINUS
Constants for MINUS, "-".static String
NULL_STRING
Constant for NULL string, "<null>".static String
OPEN_BRACE
Constant for OPEN brace, "{".static String
OPEN_ROUND_BRACKET
Constant for OPEN round bracket, "(".static String
OPEN_SQUARE_BRACKET
Constant for OPEN square bracket, "[".static String
PERCENT
Constant for PERCENT, "%".static RegExp
REGEXP_ID
Regular expression to check if a string can be used as controller type or plugin ID, "^[a-zA-Z0-9_]+$"static String
SLASH
Constant for SLASH string, "/".static String
UNDERSCORE
Constants for UNDERSCORE, "_".
-
-
-
Field Detail
-
REGEXP_ID
public static final RegExp REGEXP_ID
Regular expression to check if a string can be used as controller type or plugin ID, "^[a-zA-Z0-9_]+$"
-
EMPTY_STRING
public static final String EMPTY_STRING
Constant for EMPTY string, "".- See Also:
- Constant Field Values
-
APOSTROPHE
public static final String APOSTROPHE
Constant for APOSTROPHE string, "\'".- See Also:
- Constant Field Values
-
SLASH
public static final String SLASH
Constant for SLASH string, "/".- See Also:
- Constant Field Values
-
NULL_STRING
public static final String NULL_STRING
Constant for NULL string, "<null>".- See Also:
- Constant Field Values
-
LINE_SEPARATOR
public static final String LINE_SEPARATOR
Constant for LINE SEPARATOR, "\n".- See Also:
- Constant Field Values
-
BLANK
public static final String BLANK
Constant for BLANK, " ".- See Also:
- Constant Field Values
-
COMMA
public static final String COMMA
Constant for COMMA, ",".- See Also:
- Constant Field Values
-
COLON
public static final String COLON
Constant for COLON, ":".- See Also:
- Constant Field Values
-
PERCENT
public static final String PERCENT
Constant for PERCENT, "%".- See Also:
- Constant Field Values
-
OPEN_ROUND_BRACKET
public static final String OPEN_ROUND_BRACKET
Constant for OPEN round bracket, "(".- See Also:
- Constant Field Values
-
CLOSE_ROUND_BRACKET
public static final String CLOSE_ROUND_BRACKET
Constant for CLOSE round bracket, ")".- See Also:
- Constant Field Values
-
OPEN_SQUARE_BRACKET
public static final String OPEN_SQUARE_BRACKET
Constant for OPEN square bracket, "[".- See Also:
- Constant Field Values
-
CLOSE_SQUARE_BRACKET
public static final String CLOSE_SQUARE_BRACKET
Constant for CLOSE square bracket, "]".- See Also:
- Constant Field Values
-
OPEN_BRACE
public static final String OPEN_BRACE
Constant for OPEN brace, "{".- See Also:
- Constant Field Values
-
CLOSE_BRACE
public static final String CLOSE_BRACE
Constant for CLOSE brace, "}".- See Also:
- Constant Field Values
-
DOT
public static final String DOT
Constants for DOT, ".".- See Also:
- Constant Field Values
-
UNDERSCORE
public static final String UNDERSCORE
Constants for UNDERSCORE, "_".- See Also:
- Constant Field Values
-
MINUS
public static final String MINUS
Constants for MINUS, "-".- See Also:
- Constant Field Values
-
EQ
public static final String EQ
Constants for EQUALS, "=".- See Also:
- Constant Field Values
-
LT
public static final String LT
Constants for LESS THAN, "<".- See Also:
- Constant Field Values
-
GT
public static final String GT
Constants for GREATER THAN, ">".- See Also:
- Constant Field Values
-
AMPERSAND
public static final String AMPERSAND
Constants for AMPERSAND, "&".- See Also:
- Constant Field Values
-
-