Introduction Public class ObjectInputStream.GetField extends Object
Table | Constructor | Description |
|---|---|
| ObjectInputStream.GetField() | The function of this constructor is to create the Java.io ObjectInputStream.GetField instance. |
Table | Method | Description |
|---|---|
| abstract boolean defaulted(String name) | The function of this method is to check the current field is default or not to return boolean value. |
| abstract boolean get (String name, boolean val) | The function of this method is return the value of the field represented from persistent field. |
| abstract byte get (String name, byte val) | The function of this method is to return the value of the field from persistent field in byte. |
| abstract ObjectStreamClass getObjectStreamClass() | The function of this method is to obtain the object stream class to access the field in stream. |
Description
Examples
Key Points