com.isti.util
Interface StringConstants

All Known Implementing Classes:
AbstractQueryStringProcessor, UtilFns

public interface StringConstants

Interface StringConstants defines simple string constants.
All of these constants are simple as they have no external dependencies.


Field Summary
static java.lang.String ALPHA_CAP_CHARS
          Static string containing the upper-case characters 'A' through 'Z'.
static java.lang.String ALPHA_CHARS
          Static string containing the characters 'A' through 'Z' and 'a' through 'z'.
static java.lang.String ALPHA_LOW_CHARS
          Static string containing the lower-case characters 'a' through 'z'.
static java.lang.String ALPHANUM_CHARS_STRING
          String containing all alphanumeric characters 0-9, A-Z and a-z.
static java.lang.String ALPHANUMERIC_CHARS
          Static string containing the characters 'A' through 'Z', 'a' through 'z' and '0' though '9'.
static java.lang.String BOOLEAN_FALSE_TEXT
          Boolean false text.
static java.lang.String BOOLEAN_TRUE_TEXT
          Boolean true text.
static java.lang.String DATE_FORMAT_AMPM_STR
          DateFormat string, AM/PM clock ("MMM dd yyyy hh:mm:ss a z").
static java.lang.String DATE_FORMAT_RFC_822_STR
          DateFormat string for parsing and formatting RFC-822 date/time values.
static java.lang.String DATE_FORMAT24_STR
          DateFormat string, 24-hour clock ("MMM dd yyyy HH:mm:ss z").
static java.lang.String DEFAULT_JAVA_VERSION_STRING
          The default Java version string.
static java.lang.String DEFAULT_NULL_STR
          The default null string.
static java.lang.String DEFAULT_SEP_STR
          The default separator string.
static java.lang.String EFLOAT_CHARS
          Static string containing the numeric characters '0' through '9', the decimal point character '.' and the exponent characters 'e' and 'E'.
static java.lang.String EMPTY_STRING
          Empty string.
static java.lang.String FLOAT_CHARS
          Static string containing the numeric characters '0' through '9' and the decimal point character '.'.
static java.lang.String HEX_ALPHA_CAP_CHARS
          Static string containing the upper-case HEX characters 'A' through 'F'.
static java.lang.String HEX_ALPHA_LOW_CHARS
          Static string containing the lower-case HEX characters 'a' through 'f'.
static java.lang.String HEX_CHARS
          Static string containing the HEX characters.
static java.lang.String INTEGER_CHARS
          Static string containing the numeric characters '0' through '9'.
static java.lang.String INVALID_FILENAME_CHARS
          String of invalid file name characters.
static java.lang.String QUOTE_STRING
          String containing a single double-quote (").
static java.lang.String SIGNED_EFLOAT_CHARS
          Static string containing the numeric characters '0' through '9', the decimal point character '.', the exponent characters 'e' and 'E', and the sign characters '-' and '+'.
static java.lang.String SIGNED_FLOAT_CHARS
          Static string containing the numeric characters '0' through '9', the decimal point character '.' and the sign characters '-' and '+'.
static java.lang.String SIGNED_INT_CHARS
          Static string containing the numeric characters '0' through '9' and the sign characters '-' and '+'.
static java.lang.String SPACE_STRING
          String containing a single space character.
static java.lang.String TOD_CHARS
          Static string containing the characters needed to specify a time of day ('0' through '9', ':' and '.').
static java.lang.String WHITE_SPACE_CHARS
          Static string containing white space characters.
static java.lang.String WILDCARD_ALL_CHAR
          Static string containing the asterisk wildcard character.
static java.lang.String WILDCARD_CHARS
          Static string containing asterisk and question-mark wildcard characters.
static java.lang.String WILDCARD_SINGLE_CHAR
          Static string containing the question-mark wildcard character.
 

Field Detail

INTEGER_CHARS

static final java.lang.String INTEGER_CHARS
Static string containing the numeric characters '0' through '9'.

See Also:
Constant Field Values

HEX_ALPHA_CAP_CHARS

static final java.lang.String HEX_ALPHA_CAP_CHARS
Static string containing the upper-case HEX characters 'A' through 'F'.

See Also:
Constant Field Values

HEX_ALPHA_LOW_CHARS

static final java.lang.String HEX_ALPHA_LOW_CHARS
Static string containing the lower-case HEX characters 'a' through 'f'.

See Also:
Constant Field Values

HEX_CHARS

static final java.lang.String HEX_CHARS
Static string containing the HEX characters.

See Also:
Constant Field Values

SIGNED_INT_CHARS

static final java.lang.String SIGNED_INT_CHARS
Static string containing the numeric characters '0' through '9' and the sign characters '-' and '+'.

See Also:
Constant Field Values

FLOAT_CHARS

static final java.lang.String FLOAT_CHARS
Static string containing the numeric characters '0' through '9' and the decimal point character '.'.

See Also:
Constant Field Values

SIGNED_FLOAT_CHARS

static final java.lang.String SIGNED_FLOAT_CHARS
Static string containing the numeric characters '0' through '9', the decimal point character '.' and the sign characters '-' and '+'.

See Also:
Constant Field Values

EFLOAT_CHARS

static final java.lang.String EFLOAT_CHARS
Static string containing the numeric characters '0' through '9', the decimal point character '.' and the exponent characters 'e' and 'E'.

See Also:
Constant Field Values

SIGNED_EFLOAT_CHARS

static final java.lang.String SIGNED_EFLOAT_CHARS
Static string containing the numeric characters '0' through '9', the decimal point character '.', the exponent characters 'e' and 'E', and the sign characters '-' and '+'.

See Also:
Constant Field Values

ALPHA_CAP_CHARS

static final java.lang.String ALPHA_CAP_CHARS
Static string containing the upper-case characters 'A' through 'Z'.

See Also:
Constant Field Values

ALPHA_LOW_CHARS

static final java.lang.String ALPHA_LOW_CHARS
Static string containing the lower-case characters 'a' through 'z'.

See Also:
Constant Field Values

ALPHA_CHARS

static final java.lang.String ALPHA_CHARS
Static string containing the characters 'A' through 'Z' and 'a' through 'z'.

See Also:
Constant Field Values

ALPHANUMERIC_CHARS

static final java.lang.String ALPHANUMERIC_CHARS
Static string containing the characters 'A' through 'Z', 'a' through 'z' and '0' though '9'.

See Also:
Constant Field Values

TOD_CHARS

static final java.lang.String TOD_CHARS
Static string containing the characters needed to specify a time of day ('0' through '9', ':' and '.').

See Also:
Constant Field Values

WILDCARD_ALL_CHAR

static final java.lang.String WILDCARD_ALL_CHAR
Static string containing the asterisk wildcard character.

See Also:
Constant Field Values

WILDCARD_SINGLE_CHAR

static final java.lang.String WILDCARD_SINGLE_CHAR
Static string containing the question-mark wildcard character.

See Also:
Constant Field Values

WILDCARD_CHARS

static final java.lang.String WILDCARD_CHARS
Static string containing asterisk and question-mark wildcard characters.

See Also:
Constant Field Values

BOOLEAN_TRUE_TEXT

static final java.lang.String BOOLEAN_TRUE_TEXT
Boolean true text.


BOOLEAN_FALSE_TEXT

static final java.lang.String BOOLEAN_FALSE_TEXT
Boolean false text.


EMPTY_STRING

static final java.lang.String EMPTY_STRING
Empty string.

See Also:
Constant Field Values

SPACE_STRING

static final java.lang.String SPACE_STRING
String containing a single space character.

See Also:
Constant Field Values

QUOTE_STRING

static final java.lang.String QUOTE_STRING
String containing a single double-quote (").

See Also:
Constant Field Values

ALPHANUM_CHARS_STRING

static final java.lang.String ALPHANUM_CHARS_STRING
String containing all alphanumeric characters 0-9, A-Z and a-z.

See Also:
Constant Field Values

INVALID_FILENAME_CHARS

static final java.lang.String INVALID_FILENAME_CHARS
String of invalid file name characters.

See Also:
Constant Field Values

WHITE_SPACE_CHARS

static final java.lang.String WHITE_SPACE_CHARS
Static string containing white space characters.

See Also:
Constant Field Values

DATE_FORMAT24_STR

static final java.lang.String DATE_FORMAT24_STR
DateFormat string, 24-hour clock ("MMM dd yyyy HH:mm:ss z").

See Also:
Constant Field Values

DATE_FORMAT_AMPM_STR

static final java.lang.String DATE_FORMAT_AMPM_STR
DateFormat string, AM/PM clock ("MMM dd yyyy hh:mm:ss a z").

See Also:
Constant Field Values

DEFAULT_JAVA_VERSION_STRING

static final java.lang.String DEFAULT_JAVA_VERSION_STRING
The default Java version string.

See Also:
Constant Field Values

DEFAULT_SEP_STR

static final java.lang.String DEFAULT_SEP_STR
The default separator string.

See Also:
Constant Field Values

DEFAULT_NULL_STR

static final java.lang.String DEFAULT_NULL_STR
The default null string.

See Also:
Constant Field Values

DATE_FORMAT_RFC_822_STR

static final java.lang.String DATE_FORMAT_RFC_822_STR
DateFormat string for parsing and formatting RFC-822 date/time values.

See Also:
Constant Field Values