Java Doc for ByteBufferImpl.java in  » 6.0-JDK-Modules » j2me » java » nio » 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 » 6.0 JDK Modules » j2me » java.nio 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.nio.Buffer
      java.nio.ByteBuffer
         java.nio.ByteBufferImpl

ByteBufferImpl
class ByteBufferImpl extends ByteBuffer (Code)
A Buffer storing byte data.



Constructor Summary
 ByteBufferImpl(int capacity, byte[] array, int arrayOffset, ByteBuffer directParent)
    

Method Summary
native static  int_allocNative(int capacity)
    
native static  void_copyBytes(int srcAddress, int dstAddress, int bytes)
    
native static  byte_getByte(int address)
    
native static  void_getBytes(int address, byte[] dst, int offset, int length)
    
native static  float_getFloat(int address)
    
native static  void_getFloats(int address, float[] dst, int offset, int length)
    
native static  int_getInt(int address)
    
native static  void_getInts(int address, int[] dst, int offset, int length)
    
native static  short_getShort(int address)
    
native static  void_getShorts(int address, short[] dst, int offset, int length)
    
native static  void_putByte(int address, byte value)
    
native static  void_putBytes(int address, byte[] dst, int offset, int length)
    
native static  void_putFloat(int address, float value)
    
native static  void_putFloats(int address, float[] dst, int offset, int length)
    
native static  void_putInt(int address, int value)
    
native static  void_putInts(int address, int[] dst, int offset, int length)
    
native static  void_putShort(int address, short value)
    
native static  void_putShorts(int address, short[] dst, int offset, int length)
    
public  FloatBufferasFloatBuffer()
    
public  IntBufferasIntBuffer()
    
public  ShortBufferasShortBuffer()
    
public  voiddispose()
    
public  byteget()
    
public  byteget(int index)
    
public  floatgetFloat()
    
public  floatgetFloat(int index)
    
public  intgetInt()
    
public  intgetInt(int index)
    
public  shortgetShort()
    
public  shortgetShort(int index)
    
public static  booleanisBigEndian()
    
public  booleanisDirect()
    
public  intnativeAddress()
    
public  ByteBufferput(byte b)
    
public  ByteBufferput(int index, byte b)
    
public  ByteBufferputFloat(float value)
    
public  ByteBufferputFloat(int index, float value)
    
public  ByteBufferputInt(int value)
    
public  ByteBufferputInt(int index, int value)
    
public  ByteBufferputShort(short value)
    
public  ByteBufferputShort(int index, short value)
    
public  ByteBufferslice()
    


Constructor Detail
ByteBufferImpl
ByteBufferImpl(int capacity, byte[] array, int arrayOffset, ByteBuffer directParent)(Code)




Method Detail
_allocNative
native static int _allocNative(int capacity)(Code)



_copyBytes
native static void _copyBytes(int srcAddress, int dstAddress, int bytes)(Code)



_getByte
native static byte _getByte(int address)(Code)



_getBytes
native static void _getBytes(int address, byte[] dst, int offset, int length)(Code)



_getFloat
native static float _getFloat(int address)(Code)



_getFloats
native static void _getFloats(int address, float[] dst, int offset, int length)(Code)



_getInt
native static int _getInt(int address)(Code)



_getInts
native static void _getInts(int address, int[] dst, int offset, int length)(Code)



_getShort
native static short _getShort(int address)(Code)



_getShorts
native static void _getShorts(int address, short[] dst, int offset, int length)(Code)



_putByte
native static void _putByte(int address, byte value)(Code)



_putBytes
native static void _putBytes(int address, byte[] dst, int offset, int length)(Code)



_putFloat
native static void _putFloat(int address, float value)(Code)



_putFloats
native static void _putFloats(int address, float[] dst, int offset, int length)(Code)



_putInt
native static void _putInt(int address, int value)(Code)



_putInts
native static void _putInts(int address, int[] dst, int offset, int length)(Code)



_putShort
native static void _putShort(int address, short value)(Code)



_putShorts
native static void _putShorts(int address, short[] dst, int offset, int length)(Code)



asFloatBuffer
public FloatBuffer asFloatBuffer()(Code)



asIntBuffer
public IntBuffer asIntBuffer()(Code)



asShortBuffer
public ShortBuffer asShortBuffer()(Code)



dispose
public void dispose()(Code)



get
public byte get()(Code)



get
public byte get(int index)(Code)



getFloat
public float getFloat()(Code)



getFloat
public float getFloat(int index)(Code)



getInt
public int getInt()(Code)



getInt
public int getInt(int index)(Code)



getShort
public short getShort()(Code)



getShort
public short getShort(int index)(Code)



isBigEndian
public static boolean isBigEndian()(Code)



isDirect
public boolean isDirect()(Code)



nativeAddress
public int nativeAddress()(Code)



put
public ByteBuffer put(byte b)(Code)



put
public ByteBuffer put(int index, byte b)(Code)



putFloat
public ByteBuffer putFloat(float value)(Code)



putFloat
public ByteBuffer putFloat(int index, float value)(Code)



putInt
public ByteBuffer putInt(int value)(Code)



putInt
public ByteBuffer putInt(int index, int value)(Code)



putShort
public ByteBuffer putShort(short value)(Code)



putShort
public ByteBuffer putShort(int index, short value)(Code)



slice
public ByteBuffer slice()(Code)



Fields inherited from java.nio.ByteBuffer
byte[] array(Code)(Java Doc)
int arrayOffset(Code)(Java Doc)
Buffer directParent(Code)(Java Doc)
boolean disposed(Code)(Java Doc)
boolean isDirect(Code)(Java Doc)

Methods inherited from java.nio.ByteBuffer
public static ByteBuffer allocateDirect(int capacity)(Code)(Java Doc)
final public byte[] array()(Code)(Java Doc)
final public int arrayOffset()(Code)(Java Doc)
abstract public FloatBuffer asFloatBuffer()(Code)(Java Doc)
abstract public IntBuffer asIntBuffer()(Code)(Java Doc)
abstract public ShortBuffer asShortBuffer()(Code)(Java Doc)
public int compareTo(Object ob)(Code)(Java Doc)
public boolean equals(Object ob)(Code)(Java Doc)
abstract public byte get()(Code)(Java Doc)
abstract public byte get(int index)(Code)(Java Doc)
public ByteBuffer get(byte[] dst, int offset, int length)(Code)(Java Doc)
public ByteBuffer get(byte[] dst)(Code)(Java Doc)
abstract public float getFloat()(Code)(Java Doc)
abstract public float getFloat(int index)(Code)(Java Doc)
abstract public int getInt()(Code)(Java Doc)
abstract public int getInt(int index)(Code)(Java Doc)
abstract public short getShort()(Code)(Java Doc)
abstract public short getShort(int index)(Code)(Java Doc)
final public boolean hasArray()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
abstract public boolean isDirect()(Code)(Java Doc)
abstract public ByteBuffer put(byte b)(Code)(Java Doc)
abstract public ByteBuffer put(int index, byte b)(Code)(Java Doc)
public ByteBuffer put(ByteBuffer src)(Code)(Java Doc)
public ByteBuffer put(byte[] src, int offset, int length)(Code)(Java Doc)
final public ByteBuffer put(byte[] src)(Code)(Java Doc)
abstract public ByteBuffer putFloat(float value)(Code)(Java Doc)
abstract public ByteBuffer putFloat(int index, float value)(Code)(Java Doc)
abstract public ByteBuffer putInt(int value)(Code)(Java Doc)
abstract public ByteBuffer putInt(int index, int value)(Code)(Java Doc)
abstract public ByteBuffer putShort(short value)(Code)(Java Doc)
abstract public ByteBuffer putShort(int index, short value)(Code)(Java Doc)
abstract public ByteBuffer slice()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public static ByteBuffer wrap(byte[] array, int offset, int length)(Code)(Java Doc)
public static ByteBuffer wrap(byte[] array)(Code)(Java Doc)

Fields inherited from java.nio.Buffer
int capacity(Code)(Java Doc)
int limit(Code)(Java Doc)
int position(Code)(Java Doc)

Methods inherited from java.nio.Buffer
final public int capacity()(Code)(Java Doc)
final public Buffer clear()(Code)(Java Doc)
final public Buffer flip()(Code)(Java Doc)
final public boolean hasRemaining()(Code)(Java Doc)
final public int limit()(Code)(Java Doc)
final public Buffer limit(int newLimit)(Code)(Java Doc)
final public int position()(Code)(Java Doc)
final public Buffer position(int newPosition)(Code)(Java Doc)
final public int remaining()(Code)(Java Doc)
final public Buffer rewind()(Code)(Java Doc)

Methods inherited from java.lang.Object
public boolean equals(Object obj)(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.