Package | Description |
---|---|
jdeserialize |
Modifier and Type | Class and Description |
---|---|
class |
arrayobj
Represents an array instance, including the values the comprise the array.
|
class |
blockdata
Represents an opaque block of data written to the stream.
|
class |
classdesc
Represents the entire serialized prototype of the class, including all
fields, inner classes, class annotations, and inheritance hierarchy.
|
class |
classobj
This represents a Class object (i.e. an instance of type Class) serialized in the
stream.
|
class |
contentbase
Provides a skeleton content implementation.
|
class |
enumobj
Represents an enum instance.
|
class |
exceptionstate
This object contains embedded information about a serialization that failed, throwing
an exception.
|
class |
instance
Represents an instance of a non-enum, non-Class, non-ObjectStreamClass,
non-array class, including the non-transient field values, for all classes in
its hierarchy and inner classes.
|
class |
stringobj
Represents a serialized string object.
|
Modifier and Type | Field and Description |
---|---|
content |
exceptionstate.exceptionobj
The serialized exception object.
|
content |
ExceptionReadException.exceptionobj |
Modifier and Type | Field and Description |
---|---|
java.util.Map<classdesc,java.util.List<content>> |
instance.annotations
Object annotation data.
|
java.util.List<content> |
classdesc.annotations
List of annotation objects; these are *not* Java annotations, but data
written by the
annotateClass(Class
|
private java.util.ArrayList<content> |
jdeserialize.content |
private java.util.ArrayList<java.util.Map<java.lang.Integer,content>> |
jdeserialize.handlemaps |
private java.util.HashMap<java.lang.Integer,content> |
jdeserialize.handles |
Modifier and Type | Method and Description |
---|---|
content |
ExceptionReadException.getExceptionObject()
Gets the Exception object that was thrown.
|
content |
jdeserialize.read_Content(byte tc,
java.io.DataInputStream dis,
boolean blockdata)
Read the next object corresponding to the spec grammar rule "content", and return
an object of type content.
|
content |
jdeserialize.read_Exception(java.io.DataInputStream dis)
Read the content of a thrown exception object.
|
content |
jdeserialize.read_prevObject(java.io.DataInputStream dis) |
Modifier and Type | Method and Description |
---|---|
java.util.List<content> |
jdeserialize.getContent()
Retrieves the list of content objects that were written to the stream.
|
java.util.List<java.util.Map<java.lang.Integer,content>> |
jdeserialize.getHandleMaps()
Return a list of Maps containing every object with a handle.
|
java.util.List<content> |
jdeserialize.read_classAnnotation(java.io.DataInputStream dis) |
Modifier and Type | Method and Description |
---|---|
void |
jdeserialize.setHandle(int handle,
content c) |
Constructor and Description |
---|
ExceptionReadException(content c)
Constructor.
|
exceptionstate(content exobj,
byte[] data)
Consturctor.
|