Java Doc for IRandomAccess.java in  » PDF » jPod » de » intarsys » tools » randomaccess » 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 » PDF » jPod » de.intarsys.tools.randomaccess 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


de.intarsys.tools.randomaccess.IRandomAccess

All known Subclasses:   de.intarsys.tools.randomaccess.AbstractRandomAccess,
IRandomAccess
public interface IRandomAccess (Code)
An interface for an object that can randomly access bytes in a data stream.

This is an abstraction of RandomAccessFile to support other data storage objects (like byte arrays and so on).





Method Summary
abstract public  InputStreamasInputStream()
     A InputStream view on the data structure.
abstract public  OutputStreamasOutputStream()
     A OutputStream view on the data structure.
public  voidclose()
     Closes this random access data container and releases any system resources associated with the stream.
public  voidflush()
     Force changes to be made persistent.
public  longgetLength()
     Returns the length of this data container.
public  longgetOffset()
     Returns the current offset in this data container.
public  booleanisReadOnly()
     true if this is a read only data container.
abstract public  voidmark()
     Mark the current offset into the data in a stack like manner.
public  intread()
     Reads a byte of data from this data container.
public  intread(byte[] buffer)
     Reads up to buffer.length bytes of data from this data container into an array of bytes.
public  intread(byte[] buffer, int start, int numBytes)
     Reads up to len bytes of data from this data container into an array of bytes.
abstract public  voidreset()
     Reset to the last position on the mark-stack.
public  voidseek(long offset)
     Sets the offset, measured from the beginning of the data container at which the next read or write occurs.
public  voidseekBy(long delta)
     Sets the offset, measured from the current offset at which the next read or write occurs.
public  voidsetLength(long newLength)
     Assign the length.
public  voidwrite(int b)
     Writes the specified byte .
public  voidwrite(byte[] buffer)
     Writes b.length bytes from the specified byte array, starting at the current offset.
abstract public  voidwrite(byte[] buffer, int start, int numBytes)
     Writes len bytes from the specified byte array starting at start.



Method Detail
asInputStream
abstract public InputStream asInputStream()(Code)
A InputStream view on the data structure. A InputStream view on the data structure.



asOutputStream
abstract public OutputStream asOutputStream()(Code)
A OutputStream view on the data structure. A OutputStream view on the data structure.



close
public void close() throws IOException(Code)
Closes this random access data container and releases any system resources associated with the stream. A closed random access data container cannot perform input or output operations and cannot be reopened.
exception:
  IOException - if an I/O error occurs.



flush
public void flush() throws IOException(Code)
Force changes to be made persistent.
throws:
  IOException -



getLength
public long getLength() throws IOException(Code)
Returns the length of this data container. the length of this data container, measured in bytes.
exception:
  IOException - if an I/O error occurs.



getOffset
public long getOffset() throws IOException(Code)
Returns the current offset in this data container. the offset from the beginning of the data container, in bytes, atwhich the next read or write occurs.
exception:
  IOException - if an I/O error occurs.



isReadOnly
public boolean isReadOnly()(Code)
true if this is a read only data container. true if this is a read only data container.



mark
abstract public void mark() throws IOException(Code)
Mark the current offset into the data in a stack like manner.



read
public int read() throws IOException(Code)
Reads a byte of data from this data container. The byte is returned as an integer in the range 0 to 255 (0x00-0x0ff). This method blocks if no input is yet available.

This method behaves in exactly the same way as the InputStream.read method of InputStream. the next byte of data, or -1 if the end of thedata container has been reached.
exception:
  IOException - if an I/O error occurs. Not thrown if the end of the datacontainer has been reached.




read
public int read(byte[] buffer) throws IOException(Code)
Reads up to buffer.length bytes of data from this data container into an array of bytes. This method blocks until at least one byte of input is available.

This method behaves in the exactly the same way as the InputStream.read(byte[]) method of InputStream.
Parameters:
  buffer - the buffer into which the data is read. the total number of bytes read into the buffer, or-1 if there is no more data because the end ofthis data container has been reached.
exception:
  IOException - if an I/O error occurs.




read
public int read(byte[] buffer, int start, int numBytes) throws IOException(Code)
Reads up to len bytes of data from this data container into an array of bytes. This method blocks until at least one byte of input is available.


Parameters:
  b - the buffer into which the data is read.
Parameters:
  off - the start offset of the data.
Parameters:
  len - the maximum number of bytes read. the total number of bytes read into the buffer, or-1 if there is no more data because the end of thefile has been reached.
exception:
  IOException - if an I/O error occurs.




reset
abstract public void reset() throws IOException(Code)
Reset to the last position on the mark-stack.



seek
public void seek(long offset) throws IOException(Code)
Sets the offset, measured from the beginning of the data container at which the next read or write occurs. The offset may be set beyond the end of the data container. Setting the offset beyond the end of the data container does not change the data container length. The length will change only by writing after the offset has been set beyond the end of the data container.
Parameters:
  offset - the offset position, measured in bytes from the beginning ofthe data container
exception:
  IOException - if offset is less than 0 orif an I/O error occurs.



seekBy
public void seekBy(long delta) throws IOException(Code)
Sets the offset, measured from the current offset at which the next read or write occurs. The offset may be set beyond the end of the data container. Setting the offset beyond the end of the data container does not change the data container length. The length will change only by writing after the offset has been set beyond the end of the data container.
Parameters:
  delta - the ammount of bytes by wich to change the current offsetposition
exception:
  IOException - if the resulting offset is less than0 or if an I/O error occurs.



setLength
public void setLength(long newLength) throws IOException(Code)
Assign the length. All bytes after length are truncated. If the real length is currently less than newLength, the data structure will be enlarged.
Parameters:
  newLength -
throws:
  IOException -



write
public void write(int b) throws IOException(Code)
Writes the specified byte . The write starts at the current offset.
Parameters:
  b - the byte to be written.
exception:
  IOException - if an I/O error occurs.



write
public void write(byte[] buffer) throws IOException(Code)
Writes b.length bytes from the specified byte array, starting at the current offset.
Parameters:
  b - the data.
exception:
  IOException - if an I/O error occurs.



write
abstract public void write(byte[] buffer, int start, int numBytes) throws IOException(Code)
Writes len bytes from the specified byte array starting at start.
Parameters:
  buffer - the data.
Parameters:
  start - the start offset in the data.
Parameters:
  numBytes - the number of bytes to write.
exception:
  IOException - if an I/O error occurs.



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