Package net.sf.saxon.str
Class StringConstants
- java.lang.Object
-
- net.sf.saxon.str.StringConstants
-
public class StringConstants extends java.lang.Object
Contains constants representing some frequently used strings, either as aUnicodeString
or in some cases as a byte array.
-
-
Field Summary
Fields Modifier and Type Field Description static UnicodeString
ASTERISK
static byte[]
COMMENT_END
static byte[]
COMMENT_START
static byte[]
EMPTY_TAG_END
static byte[]
EMPTY_TAG_END_XHTML
static byte[]
EMPTY_TAG_MIDDLE
static byte[]
END_TAG_START
static byte[]
ESCAPE_AMP
static byte[]
ESCAPE_APOS
static byte[]
ESCAPE_CR
static byte[]
ESCAPE_GT
static byte[]
ESCAPE_LT
static byte[]
ESCAPE_NBSP
static byte[]
ESCAPE_NL
static byte[]
ESCAPE_QUOT
static byte[]
ESCAPE_TAB
static UnicodeString
FALSE
static UnicodeString
MIN_LONG
static UnicodeString
NEWLINE
static UnicodeString
ONE
static byte[]
PI_END
static byte[]
PI_START
static UnicodeString
POINT_ZERO
static UnicodeString
SINGLE_SPACE
static UnicodeString
TRUE
static byte[]
TWO_HYPHENS
static UnicodeString
ZERO
static UnicodeString
ZERO_TO_NINE
-
Constructor Summary
Constructors Constructor Description StringConstants()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static byte[]
bytes(java.lang.String s)
-
-
-
Field Detail
-
SINGLE_SPACE
public static final UnicodeString SINGLE_SPACE
-
NEWLINE
public static final UnicodeString NEWLINE
-
TRUE
public static final UnicodeString TRUE
-
FALSE
public static final UnicodeString FALSE
-
ONE
public static final UnicodeString ONE
-
ZERO
public static final UnicodeString ZERO
-
ZERO_TO_NINE
public static final UnicodeString ZERO_TO_NINE
-
MIN_LONG
public static final UnicodeString MIN_LONG
-
POINT_ZERO
public static final UnicodeString POINT_ZERO
-
ASTERISK
public static final UnicodeString ASTERISK
-
COMMENT_START
public static final byte[] COMMENT_START
-
COMMENT_END
public static final byte[] COMMENT_END
-
TWO_HYPHENS
public static final byte[] TWO_HYPHENS
-
PI_START
public static final byte[] PI_START
-
PI_END
public static final byte[] PI_END
-
EMPTY_TAG_MIDDLE
public static final byte[] EMPTY_TAG_MIDDLE
-
EMPTY_TAG_END
public static final byte[] EMPTY_TAG_END
-
EMPTY_TAG_END_XHTML
public static final byte[] EMPTY_TAG_END_XHTML
-
END_TAG_START
public static final byte[] END_TAG_START
-
ESCAPE_LT
public static final byte[] ESCAPE_LT
-
ESCAPE_GT
public static final byte[] ESCAPE_GT
-
ESCAPE_AMP
public static final byte[] ESCAPE_AMP
-
ESCAPE_NL
public static final byte[] ESCAPE_NL
-
ESCAPE_CR
public static final byte[] ESCAPE_CR
-
ESCAPE_TAB
public static final byte[] ESCAPE_TAB
-
ESCAPE_QUOT
public static final byte[] ESCAPE_QUOT
-
ESCAPE_APOS
public static final byte[] ESCAPE_APOS
-
ESCAPE_NBSP
public static final byte[] ESCAPE_NBSP
-
-