Java Doc for EmulatedFieldsForLoading.java in  » Apache-Harmony-Java-SE » java-package » java » io » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Apache Harmony Java SE » java package » java.io 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.io.InputStream
      java.io.ObjectInputStream
         java.io.EmulatedFieldsForLoading

EmulatedFieldsForLoading
class EmulatedFieldsForLoading extends ObjectInputStream.GetField (Code)
An EmulatedFieldsForLoading is an object that represents a set of emulated fields for an object being loaded. It is a concrete implementation for ObjectInputStream.GetField
See Also:   ObjectInputStream.GetField
See Also:   EmulatedFieldsForDumping



Constructor Summary
 EmulatedFieldsForLoading(ObjectStreamClass streamClass)
     Constructs a new instance of EmulatedFieldsForDumping.

Method Summary
public  booleandefaulted(String name)
     Return a boolean indicating if the field named name has been assigned a value explicitly (false) or if it still holds a default value for the type (true) because it hasn't been assigned to yet.
 EmulatedFieldsemulatedFields()
     Return the actual EmulatedFields instance used by the receiver.
public  byteget(String name, byte defaultValue)
     Find and return the byte value of a given field named name in the receiver.
public  charget(String name, char defaultValue)
     Find and return the char value of a given field named name in the receiver.
public  doubleget(String name, double defaultValue)
     Find and return the double value of a given field named name in the receiver.
public  floatget(String name, float defaultValue)
     Find and return the float value of a given field named name in the receiver.
public  intget(String name, int defaultValue)
     Find and return the int value of a given field named name in the receiver.
public  longget(String name, long defaultValue)
     Find and return the long value of a given field named name in the receiver.
public  Objectget(String name, Object defaultValue)
     Find and return the Object value of a given field named name in the receiver.
public  shortget(String name, short defaultValue)
     Find and return the short value of a given field named name in the receiver.
public  booleanget(String name, boolean defaultValue)
     Find and return the boolean value of a given field named name in the receiver.
public  ObjectStreamClassgetObjectStreamClass()
     Return the class descriptor for which the emulated fields are defined.


Constructor Detail
EmulatedFieldsForLoading
EmulatedFieldsForLoading(ObjectStreamClass streamClass)(Code)
Constructs a new instance of EmulatedFieldsForDumping.
Parameters:
  streamClass - an ObjectStreamClass, defining the class for which to emulatefields.




Method Detail
defaulted
public boolean defaulted(String name) throws IOException, IllegalArgumentException(Code)
Return a boolean indicating if the field named name has been assigned a value explicitly (false) or if it still holds a default value for the type (true) because it hasn't been assigned to yet.
Parameters:
  name - A String, the name of the field to test true if the field holds it default value,false otherwise.
throws:
  IOException - If an IO error occurs
throws:
  IllegalArgumentException - If the corresponding field can not be found.



emulatedFields
EmulatedFields emulatedFields()(Code)
Return the actual EmulatedFields instance used by the receiver. We have the actual work in a separate class so that the code can be shared. The receiver has to be of a subclass of GetField. array of ObjectSlot the receiver represents.



get
public byte get(String name, byte defaultValue) throws IOException, IllegalArgumentException(Code)
Find and return the byte value of a given field named name in the receiver. If the field has not been assigned any value yet, the default value defaultValue is returned instead.
Parameters:
  name - A String, the name of the field to find
Parameters:
  defaultValue - Return value in case the field has not been assigned to yet. the value of the given field if it has been assigned, or thedefault value otherwise
throws:
  IOException - If an IO error occurs
throws:
  IllegalArgumentException - If the corresponding field can not be found.



get
public char get(String name, char defaultValue) throws IOException, IllegalArgumentException(Code)
Find and return the char value of a given field named name in the receiver. If the field has not been assigned any value yet, the default value defaultValue is returned instead.
Parameters:
  name - A String, the name of the field to find
Parameters:
  defaultValue - Return value in case the field has not been assigned to yet. the value of the given field if it has been assigned, or thedefault value otherwise
throws:
  IOException - If an IO error occurs
throws:
  IllegalArgumentException - If the corresponding field can not be found.



get
public double get(String name, double defaultValue) throws IOException, IllegalArgumentException(Code)
Find and return the double value of a given field named name in the receiver. If the field has not been assigned any value yet, the default value defaultValue is returned instead.
Parameters:
  name - A String, the name of the field to find
Parameters:
  defaultValue - Return value in case the field has not been assigned to yet. the value of the given field if it has been assigned, or thedefault value otherwise
throws:
  IOException - If an IO error occurs
throws:
  IllegalArgumentException - If the corresponding field can not be found.



get
public float get(String name, float defaultValue) throws IOException, IllegalArgumentException(Code)
Find and return the float value of a given field named name in the receiver. If the field has not been assigned any value yet, the default value defaultValue is returned instead.
Parameters:
  name - A String, the name of the field to find
Parameters:
  defaultValue - Return value in case the field has not been assigned to yet. the value of the given field if it has been assigned, or thedefault value otherwise
throws:
  IOException - If an IO error occurs
throws:
  IllegalArgumentException - If the corresponding field can not be found.



get
public int get(String name, int defaultValue) throws IOException, IllegalArgumentException(Code)
Find and return the int value of a given field named name in the receiver. If the field has not been assigned any value yet, the default value defaultValue is returned instead.
Parameters:
  name - A String, the name of the field to find
Parameters:
  defaultValue - Return value in case the field has not been assigned to yet. the value of the given field if it has been assigned, or thedefault value otherwise
throws:
  IOException - If an IO error occurs
throws:
  IllegalArgumentException - If the corresponding field can not be found.



get
public long get(String name, long defaultValue) throws IOException, IllegalArgumentException(Code)
Find and return the long value of a given field named name in the receiver. If the field has not been assigned any value yet, the default value defaultValue is returned instead.
Parameters:
  name - A String, the name of the field to find
Parameters:
  defaultValue - Return value in case the field has not been assigned to yet. the value of the given field if it has been assigned, or thedefault value otherwise
throws:
  IOException - If an IO error occurs
throws:
  IllegalArgumentException - If the corresponding field can not be found.



get
public Object get(String name, Object defaultValue) throws IOException, IllegalArgumentException(Code)
Find and return the Object value of a given field named name in the receiver. If the field has not been assigned any value yet, the default value defaultValue is returned instead.
Parameters:
  name - A String, the name of the field to find
Parameters:
  defaultValue - Return value in case the field has not been assigned to yet. the value of the given field if it has been assigned, or thedefault value otherwise
throws:
  IOException - If an IO error occurs
throws:
  IllegalArgumentException - If the corresponding field can not be found.



get
public short get(String name, short defaultValue) throws IOException, IllegalArgumentException(Code)
Find and return the short value of a given field named name in the receiver. If the field has not been assigned any value yet, the default value defaultValue is returned instead.
Parameters:
  name - A String, the name of the field to find
Parameters:
  defaultValue - Return value in case the field has not been assigned to yet. the value of the given field if it has been assigned, or thedefault value otherwise
throws:
  IOException - If an IO error occurs
throws:
  IllegalArgumentException - If the corresponding field can not be found.



get
public boolean get(String name, boolean defaultValue) throws IOException, IllegalArgumentException(Code)
Find and return the boolean value of a given field named name in the receiver. If the field has not been assigned any value yet, the default value defaultValue is returned instead.
Parameters:
  name - A String, the name of the field to find
Parameters:
  defaultValue - Return value in case the field has not been assigned to yet. the value of the given field if it has been assigned, or thedefault value otherwise
throws:
  IOException - If an IO error occurs
throws:
  IllegalArgumentException - If the corresponding field can not be found.



getObjectStreamClass
public ObjectStreamClass getObjectStreamClass()(Code)
Return the class descriptor for which the emulated fields are defined. ObjectStreamClass The class descriptor for which the emulatedfields are defined.



Methods inherited from java.io.ObjectInputStream
public int available() throws IOException(Code)(Java Doc)
public void close() throws IOException(Code)(Java Doc)
public void defaultReadObject() throws IOException, ClassNotFoundException, NotActiveException(Code)(Java Doc)
protected boolean enableResolveObject(boolean enable) throws SecurityException(Code)(Java Doc)
public int read() throws IOException(Code)(Java Doc)
public int read(byte[] buffer, int offset, int length) throws IOException(Code)(Java Doc)
public boolean readBoolean() throws IOException(Code)(Java Doc)
public byte readByte() throws IOException(Code)(Java Doc)
public char readChar() throws IOException(Code)(Java Doc)
protected ObjectStreamClass readClassDescriptor() throws IOException, ClassNotFoundException(Code)(Java Doc)
public double readDouble() throws IOException(Code)(Java Doc)
public GetField readFields() throws IOException, ClassNotFoundException, NotActiveException(Code)(Java Doc)
public float readFloat() throws IOException(Code)(Java Doc)
public void readFully(byte[] buffer) throws IOException(Code)(Java Doc)
public void readFully(byte[] buffer, int offset, int length) throws IOException(Code)(Java Doc)
public int readInt() throws IOException(Code)(Java Doc)
public String readLine() throws IOException(Code)(Java Doc)
public long readLong() throws IOException(Code)(Java Doc)
final public Object readObject() throws OptionalDataException, ClassNotFoundException, IOException(Code)(Java Doc)
protected Object readObjectOverride() throws OptionalDataException, ClassNotFoundException, IOException(Code)(Java Doc)
public short readShort() throws IOException(Code)(Java Doc)
protected void readStreamHeader() throws IOException, StreamCorruptedException(Code)(Java Doc)
public String readUTF() throws IOException(Code)(Java Doc)
public Object readUnshared() throws IOException, ClassNotFoundException(Code)(Java Doc)
public int readUnsignedByte() throws IOException(Code)(Java Doc)
public int readUnsignedShort() throws IOException(Code)(Java Doc)
public synchronized void registerValidation(ObjectInputValidation object, int priority) throws NotActiveException, InvalidObjectException(Code)(Java Doc)
protected Class resolveClass(ObjectStreamClass osClass) throws IOException, ClassNotFoundException(Code)(Java Doc)
protected Object resolveObject(Object object) throws IOException(Code)(Java Doc)
protected Class resolveProxyClass(String[] interfaceNames) throws IOException, ClassNotFoundException(Code)(Java Doc)
public int skipBytes(int length) throws IOException(Code)(Java Doc)

Methods inherited from java.io.InputStream
public int available() throws IOException(Code)(Java Doc)
public void close() throws IOException(Code)(Java Doc)
public void mark(int readlimit)(Code)(Java Doc)
public boolean markSupported()(Code)(Java Doc)
abstract public int read() throws IOException(Code)(Java Doc)
public int read(byte b) throws IOException(Code)(Java Doc)
public int read(byte b, int offset, int length) throws IOException(Code)(Java Doc)
public synchronized void reset() throws IOException(Code)(Java Doc)
public long skip(long n) throws IOException(Code)(Java Doc)

Methods inherited from java.lang.Object
protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object object)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final public Class<? extends Object> getClass()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
final public void notify()(Code)(Java Doc)
final public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final public void wait(long millis, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait(long millis) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.