|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.sf.saxon.value.Whitespace
public class Whitespace
This class provides helper methods and constants for handling whitespace
Field Summary | |
---|---|
static int |
ALL
|
static int |
COLLAPSE
|
static int |
IGNORABLE
|
static int |
NONE
The values NONE, IGNORABLE, and ALL identify which kinds of whitespace text node should be stripped when building a source tree |
static int |
PRESERVE
The values PRESERVE, REPLACE, and COLLAPSE represent the three options for whitespace normalization. |
static int |
REPLACE
|
static int |
UNSPECIFIED
|
Method Summary | |
---|---|
static CharSequence |
applyWhitespaceNormalization(int action,
CharSequence value)
Apply schema-defined whitespace normalization to a string |
static CharSequence |
collapseWhitespace(CharSequence in)
Collapse whitespace as defined in XML Schema |
static boolean |
containsWhitespace(CharSequence value)
Determine if a string contains any whitespace |
static boolean |
isWhite(CharSequence content)
Determine if a string is all-whitespace |
static boolean |
isWhitespace(int ch)
Test whether a character is whitespace |
static CharSequence |
normalizeWhitespace(CharSequence in)
Normalize whitespace as defined in XML Schema |
static CharSequence |
removeAllWhitespace(CharSequence value)
Remove all whitespace characters from a string |
static CharSequence |
removeLeadingWhitespace(CharSequence value)
Remove leading whitespace characters from a string |
static CharSequence |
trimWhitespace(CharSequence in)
Remove leading and trailing whitespace. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int PRESERVE
public static final int REPLACE
public static final int COLLAPSE
public static final int NONE
public static final int IGNORABLE
public static final int ALL
public static final int UNSPECIFIED
Method Detail |
---|
public static boolean isWhitespace(int ch)
public static CharSequence applyWhitespaceNormalization(int action, CharSequence value)
action
- the action to be applied: one of PRESERVE, REPLACE, or COLLAPSEvalue
- the value to be normalized
public static CharSequence removeAllWhitespace(CharSequence value)
public static CharSequence removeLeadingWhitespace(CharSequence value)
public static boolean containsWhitespace(CharSequence value)
public static final boolean isWhite(CharSequence content)
content
- the string to be tested
public static CharSequence normalizeWhitespace(CharSequence in)
public static CharSequence collapseWhitespace(CharSequence in)
public static CharSequence trimWhitespace(CharSequence in)
in
- the input string whose whitespace is to be removed
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |