Package org.apache.xmlbeans.impl.common
Class XmlWhitespace
- java.lang.Object
-
- org.apache.xmlbeans.impl.common.XmlWhitespace
-
public class XmlWhitespace extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static int
WS_COLLAPSE
static int
WS_PRESERVE
static int
WS_REPLACE
static int
WS_UNSPECIFIED
-
Constructor Summary
Constructors Constructor Description XmlWhitespace()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.String
collapse(java.lang.String v)
static java.lang.String
collapse(java.lang.String v, int wsr)
The algorithm used by apply_wscanon: sometimes used in impls.static boolean
isAllSpace(java.lang.CharSequence v)
static boolean
isAllSpace(java.lang.String v)
static boolean
isSpace(char ch)
-
-
-
Field Detail
-
WS_UNSPECIFIED
public static final int WS_UNSPECIFIED
- See Also:
- Constant Field Values
-
WS_PRESERVE
public static final int WS_PRESERVE
- See Also:
- Constant Field Values
-
WS_REPLACE
public static final int WS_REPLACE
- See Also:
- Constant Field Values
-
WS_COLLAPSE
public static final int WS_COLLAPSE
- See Also:
- Constant Field Values
-
-
Method Detail
-
isSpace
public static boolean isSpace(char ch)
-
isAllSpace
public static boolean isAllSpace(java.lang.String v)
-
isAllSpace
public static boolean isAllSpace(java.lang.CharSequence v)
-
collapse
public static java.lang.String collapse(java.lang.String v)
-
collapse
public static java.lang.String collapse(java.lang.String v, int wsr)
The algorithm used by apply_wscanon: sometimes used in impls.
-
-