Class: java.io.ObjectStreamField
- public class ObjectStreamField
- implements Comparable<Object>
A description of a Serializable field from a Serializable class. An array
of ObjectStreamFields is used to declare the Serializable fields of a class.
Methods
-
ObjectStreamFieldtop
Create a Serializable field with the specified type. This field should be documented with aserialFieldtag. -
ObjectStreamFieldtop
Creates an ObjectStreamField representing a serializable field with the given name and type. If unshared is false, values of the represented field are serialized and deserialized in the default manner--if the field is non-primitive, object values are serialized and deserialized as if they had been written and read by calls to writeObject and readObject. If unshared is true, values of the represented field are serialized and deserialized as if they had been written and read by calls to writeUnshared and readUnshared. -
compareTotop
public int compareTo(Object obj)Compare this field with anotherObjectStreamField. Return -1 if this is smaller, 0 if equal, 1 if greater. Types that are primitives are "smaller" than object types. If equal, the field names are compared.- Specified by:
- compareTo from Comparable<Object>
-
getNametop
public String getName()Get the name of this field. -
getOffsettop
public int getOffset()Offset of field within instance data. -
getTypetop
public Class<?> getType()Get the type of the field. If the type is non-primitive and thisObjectStreamFieldwas obtained from a deserialized java.io.ObjectStreamClass instance, thenObject.classis returned. Otherwise, theClassobject for the type of the field is returned. -
getTypeCodetop
public char getTypeCode()Returns character encoding of field type. The encoding is as follows:B byte C char D double F float I int J long L class or interface S short Z boolean [ array
-
getTypeStringtop
public String getTypeString()Return the JVM type signature. -
isPrimitivetop
public boolean isPrimitive()Return true if this field has a primitive type. -
isUnsharedtop
public boolean isUnshared()Returns boolean value indicating whether or not the serializable field represented by this ObjectStreamField instance is unshared. -
setOffsettop
protected void setOffset(int offset)Offset within instance data. -
toStringtop
public String toString()Return a string that describes this field.
