|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectmicrosoft.exchange.webservices.data.XmlNameTable
public abstract class XmlNameTable
Table of atomized String objects.
Constructor Summary | |
---|---|
protected |
XmlNameTable()
Initializes a new instance of the XmlNameTable class. |
Method Summary | |
---|---|
abstract java.lang.String |
Add(char[] array,
int offset,
int length)
Reads an XML Schema from the supplied stream. |
abstract java.lang.String |
Add(java.lang.String array)
When overridden in a derived class, atomizes the specified String and adds it to the XmlNameTable. |
abstract java.lang.String |
Get(char[] array,
int offset,
int length)
When overridden in a derived class, gets the atomized String containing the same characters as the specified range of characters in the given array. |
abstract java.lang.String |
Get(java.lang.String array)
When overridden in a derived class, gets the atomized String containing the same value as the specified String. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
protected XmlNameTable()
Method Detail |
---|
public abstract java.lang.String Add(java.lang.String array)
array
- : The name to add.
System.ArgumentNullException
- : array is null.public abstract java.lang.String Add(char[] array, int offset, int length)
array
- The character array containing the name to add.offset
- Zero-based index into the array specifying the first character
of the name.length
- The number of characters in the name.
System.IndexOutOfRangeException
- 0 > offset -or- offset >= array.Length -or- length >
array.Length The above conditions do not cause an exception
to be thrown if length =0.
System.ArgumentOutOfRangeException
- length < 0.public abstract java.lang.String Get(java.lang.String array)
array
- The name to look up.
System.ArgumentNullException
- : array is null.public abstract java.lang.String Get(char[] array, int offset, int length)
array
- The character array containing the name to add.offset
- Zero-based index into the array specifying the first character
of the name.length
- The number of characters in the name.
System.IndexOutOfRangeException
- 0 > offset -or- offset >= array.Length -or- length >
array.Length The above conditions do not cause an exception
to be thrown if length =0.
System.ArgumentOutOfRangeException
- length < 0.
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |