Interface Importer.TextValue
-
- Enclosing interface:
- Importer
public static interface Importer.TextValue
TextValue
represents 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 long
length()
Returns the length of the serialized value.Reader
reader()
Returns aReader
for reading the serialized value.String
retrieve()
Retrieves the serialized value.
-
-
-
Method Detail
-
length
long length() throws IOException
Returns 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 aReader
for reading the serialized value.- Returns:
- a
Reader
for reading the serialized value. - Throws:
IOException
- if an I/O error occurs
-
-