Java Doc for BufferUtils.java in  » Library » Apache-common-Collections » org » apache » commons » collections » 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 » Library » Apache common Collections » org.apache.commons.collections 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.commons.collections.BufferUtils

BufferUtils
public class BufferUtils (Code)
Provides utility methods and decorators for Buffer instances.
since:
   Commons Collections 2.1
version:
   $Revision: 348808 $ $Date: 2005-11-24 21:35:09 +0000 (Thu, 24 Nov 2005) $
author:
   Paul Jack
author:
   Stephen Colebourne


Field Summary
final public static  BufferEMPTY_BUFFER
     An empty unmodifiable buffer.

Constructor Summary
public  BufferUtils()
     BufferUtils should not normally be instantiated.

Method Summary
public static  BufferblockingBuffer(Buffer buffer)
     Returns a synchronized buffer backed by the given buffer that will block on Buffer.get and Buffer.remove operations.
public static  BufferblockingBuffer(Buffer buffer, long timeoutMillis)
     Returns a synchronized buffer backed by the given buffer that will block on Buffer.get and Buffer.remove operations until timeout expires.
public static  BufferboundedBuffer(Buffer buffer, int maximumSize)
     Returns a synchronized buffer backed by the given buffer that will block on Buffer.add(Object) and Buffer.addAll(java.util.Collection) until enough object(s) are removed from the buffer to allow the object(s) to be added and still maintain the maximum size.
public static  BufferboundedBuffer(Buffer buffer, int maximumSize, long timeoutMillis)
     Returns a synchronized buffer backed by the given buffer that will block on Buffer.add(Object) and Buffer.addAll(java.util.Collection) until enough object(s) are removed from the buffer to allow the object(s) to be added and still maintain the maximum size or the timeout expires.
public static  BufferpredicatedBuffer(Buffer buffer, Predicate predicate)
     Returns a predicated (validating) buffer backed by the given buffer.
public static  BuffersynchronizedBuffer(Buffer buffer)
     Returns a synchronized buffer backed by the given buffer.
public static  BuffertransformedBuffer(Buffer buffer, Transformer transformer)
     Returns a transformed buffer backed by the given buffer.

Each object is passed through the transformer as it is added to the Buffer.

public static  BuffertypedBuffer(Buffer buffer, Class type)
     Returns a typed buffer backed by the given buffer.
public static  BufferunmodifiableBuffer(Buffer buffer)
     Returns an unmodifiable buffer backed by the given buffer.

Field Detail
EMPTY_BUFFER
final public static Buffer EMPTY_BUFFER(Code)
An empty unmodifiable buffer.




Constructor Detail
BufferUtils
public BufferUtils()(Code)
BufferUtils should not normally be instantiated.




Method Detail
blockingBuffer
public static Buffer blockingBuffer(Buffer buffer)(Code)
Returns a synchronized buffer backed by the given buffer that will block on Buffer.get and Buffer.remove operations. If the buffer is empty, then the Buffer.get and Buffer.remove operations will block until new elements are added to the buffer, rather than immediately throwing a BufferUnderflowException.
Parameters:
  buffer - the buffer to synchronize, must not be null a blocking buffer backed by that buffer
throws:
  IllegalArgumentException - if the Buffer is null



blockingBuffer
public static Buffer blockingBuffer(Buffer buffer, long timeoutMillis)(Code)
Returns a synchronized buffer backed by the given buffer that will block on Buffer.get and Buffer.remove operations until timeout expires. If the buffer is empty, then the Buffer.get and Buffer.remove operations will block until new elements are added to the buffer, rather than immediately throwing a BufferUnderflowException.
Parameters:
  buffer - the buffer to synchronize, must not be null
Parameters:
  timeoutMillis - the timeout value in milliseconds, zero or less for no timeout a blocking buffer backed by that buffer
throws:
  IllegalArgumentException - if the Buffer is null
since:
   Commons Collections 3.2



boundedBuffer
public static Buffer boundedBuffer(Buffer buffer, int maximumSize)(Code)
Returns a synchronized buffer backed by the given buffer that will block on Buffer.add(Object) and Buffer.addAll(java.util.Collection) until enough object(s) are removed from the buffer to allow the object(s) to be added and still maintain the maximum size.
Parameters:
  buffer - the buffer to make bounded, must not be null
Parameters:
  maximumSize - the maximum size a bounded buffer backed by the given buffer
throws:
  IllegalArgumentException - if the given buffer is null
since:
   Commons Collections 3.2



boundedBuffer
public static Buffer boundedBuffer(Buffer buffer, int maximumSize, long timeoutMillis)(Code)
Returns a synchronized buffer backed by the given buffer that will block on Buffer.add(Object) and Buffer.addAll(java.util.Collection) until enough object(s) are removed from the buffer to allow the object(s) to be added and still maintain the maximum size or the timeout expires.
Parameters:
  buffer - the buffer to make bounded, must not be null
Parameters:
  maximumSize - the maximum size
Parameters:
  timeoutMillis - the timeout value in milliseconds, zero or less for no timeout a bounded buffer backed by the given buffer
throws:
  IllegalArgumentException - if the given buffer is null
since:
   Commons Collections 3.2



predicatedBuffer
public static Buffer predicatedBuffer(Buffer buffer, Predicate predicate)(Code)
Returns a predicated (validating) buffer backed by the given buffer.

Only objects that pass the test in the given predicate can be added to the buffer. Trying to add an invalid object results in an IllegalArgumentException. It is important not to use the original buffer after invoking this method, as it is a backdoor for adding invalid objects.
Parameters:
  buffer - the buffer to predicate, must not be null
Parameters:
  predicate - the predicate used to evaluate new elements, must not be null a predicated buffer
throws:
  IllegalArgumentException - if the Buffer or Predicate is null




synchronizedBuffer
public static Buffer synchronizedBuffer(Buffer buffer)(Code)
Returns a synchronized buffer backed by the given buffer. Much like the synchronized collections returned by java.util.Collections , you must manually synchronize on the returned buffer's iterator to avoid non-deterministic behavior:
 Buffer b = BufferUtils.synchronizedBuffer(myBuffer);
 synchronized (b) {
 Iterator i = b.iterator();
 while (i.hasNext()) {
 process (i.next());
 }
 }
 

Parameters:
  buffer - the buffer to synchronize, must not be null a synchronized buffer backed by that buffer
throws:
  IllegalArgumentException - if the Buffer is null



transformedBuffer
public static Buffer transformedBuffer(Buffer buffer, Transformer transformer)(Code)
Returns a transformed buffer backed by the given buffer.

Each object is passed through the transformer as it is added to the Buffer. It is important not to use the original buffer after invoking this method, as it is a backdoor for adding untransformed objects.
Parameters:
  buffer - the buffer to predicate, must not be null
Parameters:
  transformer - the transformer for the buffer, must not be null a transformed buffer backed by the given buffer
throws:
  IllegalArgumentException - if the Buffer or Transformer is null




typedBuffer
public static Buffer typedBuffer(Buffer buffer, Class type)(Code)
Returns a typed buffer backed by the given buffer.

Only elements of the specified type can be added to the buffer.
Parameters:
  buffer - the buffer to predicate, must not be null
Parameters:
  type - the type to allow into the buffer, must not be null a typed buffer
throws:
  IllegalArgumentException - if the buffer or type is null




unmodifiableBuffer
public static Buffer unmodifiableBuffer(Buffer buffer)(Code)
Returns an unmodifiable buffer backed by the given buffer.
Parameters:
  buffer - the buffer to make unmodifiable, must not be null an unmodifiable buffer backed by that buffer
throws:
  IllegalArgumentException - if the Buffer is null



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) 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.