|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.xpath.Expression org.apache.xpath.objects.XObject org.apache.xpath.objects.XString org.apache.xpath.objects.XStringForChars
public class XStringForChars
This class will wrap a FastStringBuffer and allow for
Field Summary | |
---|---|
(package private) int |
m_length
The length of the string. |
(package private) int |
m_start
The start position in the fsb. |
protected java.lang.String |
m_strCache
|
(package private) static long |
serialVersionUID
|
Fields inherited from class org.apache.xpath.objects.XString |
---|
EMPTYSTRING |
Fields inherited from class org.apache.xpath.objects.XObject |
---|
CLASS_BOOLEAN, CLASS_NODESET, CLASS_NULL, CLASS_NUMBER, CLASS_RTREEFRAG, CLASS_STRING, CLASS_UNKNOWN, CLASS_UNRESOLVEDVARIABLE, m_obj |
Constructor Summary | |
---|---|
|
XStringForChars(char[] val,
int start,
int length)
Construct a XNodeSet object. |
private |
XStringForChars(java.lang.String val)
Construct a XNodeSet object. |
Method Summary | |
---|---|
void |
appendToFsb(FastStringBuffer fsb)
Cast result object to a string. |
char |
charAt(int index)
Returns the character at the specified index. |
void |
dispatchAsComment(org.xml.sax.ext.LexicalHandler lh)
Directly call the comment method on the passed LexicalHandler for the string-value. |
void |
dispatchCharactersEvents(org.xml.sax.ContentHandler ch)
Directly call the characters method on the passed ContentHandler for the string-value. |
FastStringBuffer |
fsb()
Cast result object to a string. |
void |
getChars(int srcBegin,
int srcEnd,
char[] dst,
int dstBegin)
Copies characters from this string into the destination character array. |
boolean |
hasString()
Tell if this object contains a java String object. |
int |
length()
Returns the length of this string. |
java.lang.Object |
object()
Since this object is incomplete without the length and the offset, we have to convert to a string when this function is called. |
java.lang.String |
str()
Cast result object to a string. |
Methods inherited from class org.apache.xpath.objects.XString |
---|
bool, callVisitors, compareTo, compareToIgnoreCase, concat, endsWith, equals, equals, equals, equals, equalsIgnoreCase, fixWhiteSpace, getType, getTypeString, hashCode, indexOf, indexOf, indexOf, indexOf, indexOf, lastIndexOf, lastIndexOf, lastIndexOf, lastIndexOf, num, rtf, startsWith, startsWith, startsWith, startsWith, substring, substring, toDouble, toLowerCase, toLowerCase, toUpperCase, toUpperCase, trim, xstr |
Methods inherited from class org.apache.xpath.objects.XObject |
---|
allowDetachToRelease, boolWithSideEffects, castToType, create, create, deepEquals, destruct, detach, error, error, execute, fixupVariables, getFresh, greaterThan, greaterThanOrEqual, iter, lessThan, lessThanOrEqual, mutableNodeset, nodelist, nodeset, notEquals, numWithSideEffects, reset, rtf, rtree, rtree, setObject, toString |
Methods inherited from class org.apache.xpath.Expression |
---|
asIterator, asIteratorRaw, asNode, assertion, bool, canTraverseOutsideSubtree, error, execute, execute, execute, executeCharsToContentHandler, exprAddChild, exprGetChild, exprGetNumChildren, exprGetParent, exprSetParent, getColumnNumber, getExpressionOwner, getLineNumber, getPublicId, getSystemId, isNodesetExpr, isSameClass, isStableNumber, num, warn, xstr |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.apache.xml.utils.XMLString |
---|
toString |
Field Detail |
---|
static final long serialVersionUID
int m_start
int m_length
protected java.lang.String m_strCache
Constructor Detail |
---|
public XStringForChars(char[] val, int start, int length)
val
- FastStringBuffer object this will wrap, must be non-null.start
- The start position in the array.length
- The number of characters to read from the array.private XStringForChars(java.lang.String val)
val
- String object this will wrap.Method Detail |
---|
public FastStringBuffer fsb()
public void appendToFsb(FastStringBuffer fsb)
appendToFsb
in class XObject
public boolean hasString()
hasString
in interface XMLString
hasString
in class XString
public java.lang.String str()
str
in class XString
public java.lang.Object object()
object
in class XObject
public void dispatchCharactersEvents(org.xml.sax.ContentHandler ch) throws org.xml.sax.SAXException
dispatchCharactersEvents
in interface XMLString
dispatchCharactersEvents
in class XString
ch
- A non-null reference to a ContentHandler.
org.xml.sax.SAXException
public void dispatchAsComment(org.xml.sax.ext.LexicalHandler lh) throws org.xml.sax.SAXException
dispatchAsComment
in interface XMLString
dispatchAsComment
in class XString
lh
- A non-null reference to a LexicalHandler.
org.xml.sax.SAXException
public int length()
length
in interface XMLString
length
in class XString
public char charAt(int index)
0
to length() - 1
. The first character
of the sequence is at index 0
, the next at index
1
, and so on, as for array indexing.
charAt
in interface XMLString
charAt
in class XString
index
- the index of the character.
0
.
java.lang.IndexOutOfBoundsException
- if the index
argument is negative or not less than the length of this
string.public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
getChars
in interface XMLString
getChars
in class XString
srcBegin
- index of the first character in the string
to copy.srcEnd
- index after the last character in the string
to copy.dst
- the destination array.dstBegin
- the start offset in the destination array.
java.lang.IndexOutOfBoundsException
- If any of the following
is true:
srcBegin
is negative.
srcBegin
is greater than srcEnd
srcEnd
is greater than the length of this
string
dstBegin
is negative
dstBegin+(srcEnd-srcBegin)
is larger than
dst.length
java.lang.NullPointerException
- if dst
is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |