Interface Importer.TextValue
-
- Enclosing interface:
- Importer
public static interface Importer.TextValueTextValuerepresents a serialized property value read from a System or Document View XML document.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longlength()Returns the length of the serialized value.Readerreader()Returns aReaderfor reading the serialized value.Stringretrieve()Retrieves the serialized value.
-
-
-
Method Detail
-
length
long length() throws IOExceptionReturns the length of the serialized value.- Returns:
- the length of the serialized value
- Throws:
IOException- if an I/O error occurs
-
retrieve
String retrieve() throws IOException
Retrieves the serialized value.- Returns:
- the serialized value
- Throws:
IOException- if an I/O error occurs
-
reader
Reader reader() throws IOException
Returns aReaderfor reading the serialized value.- Returns:
- a
Readerfor reading the serialized value. - Throws:
IOException- if an I/O error occurs
-
-