|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.io.ObjectStreamField
Untamed:
Field Summary | |
private java.lang.reflect.Field |
field
corresponding reflective field object, if any |
private String |
name
field name |
private int |
offset
offset of field value in enclosing field group |
private String |
signature
canonical JVM signature of field type |
private Class |
type
field type (Object.class if unknown non-primitive type) |
private boolean |
unshared
whether or not to (de)serialize field values as unshared |
Constructor Summary | |
(package private) |
ObjectStreamField(java.lang.reflect.Field field,
boolean unshared,
boolean showType)
Creates an ObjectStreamField representing the given field with the specified unshared setting. |
|
ObjectStreamField(String name,
Class type)
Enabled: Create a Serializable field with the specified type. |
|
ObjectStreamField(String name,
Class type,
boolean unshared)
Enabled: Creates an ObjectStreamField representing a serializable field with the given name and type. |
(package private) |
ObjectStreamField(String name,
String signature,
boolean unshared)
Creates an ObjectStreamField representing a field with the given name, signature and unshared setting. |
Method Summary | |
int |
compareTo(Object obj)
Enabled: Compare this field with another ObjectStreamField . |
(package private) java.lang.reflect.Field |
getField()
Returns field represented by this ObjectStreamField, or null if ObjectStreamField is not associated with an actual field. |
String |
getName()
Enabled: Get the name of this field. |
int |
getOffset()
Enabled: Offset of field within instance data. |
(package private) String |
getSignature()
Returns JVM type signature of field (similar to getTypeString, except that signature strings are returned for primitive fields as well). |
Class |
getType()
Enabled: Get the type of the field. |
char |
getTypeCode()
Enabled: Returns character encoding of field type. |
String |
getTypeString()
Enabled: Return the JVM type signature. |
boolean |
isPrimitive()
Enabled: Return true if this field has a primitive type. |
boolean |
isUnshared()
Enabled: Returns boolean value indicating whether or not the serializable field represented by this ObjectStreamField instance is unshared. |
protected void |
setOffset(int offset)
Offset within instance data. |
String |
toString()
Suppressed: Return a string that describes this field. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
private final String name
private final String signature
private final Class type
private final boolean unshared
private final java.lang.reflect.Field field
private int offset
Constructor Detail |
public ObjectStreamField(String name, Class type)
serialField
tag.
name
- the name of the serializable fieldtype
- the Class
object of the serializable fieldpublic ObjectStreamField(String name, Class type, boolean unshared)
name
- field nametype
- field typeunshared
- if false, write/read field values in the same manner
as writeObject/readObject; if true, write/read in the same
manner as writeUnshared/readUnsharedObjectStreamField(String name, String signature, boolean unshared)
ObjectStreamField(java.lang.reflect.Field field, boolean unshared, boolean showType)
Method Detail |
public String getName()
String
representing the name of the serializable
fieldpublic Class getType()
Class
object of the serializable fieldpublic char getTypeCode()
B byte C char D double F float I int J long L class or interface S short Z boolean [ array
public String getTypeString()
public int getOffset()
setOffset(int)
protected void setOffset(int offset)
offset
- the offset of the fieldgetOffset()
public boolean isPrimitive()
public boolean isUnshared()
public int compareTo(Object obj)
ObjectStreamField
. 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.
compareTo
in interface Comparable
obj
- the Object to be compared.
public String toString()
toString
in class Object
java.lang.reflect.Field getField()
String getSignature()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |