Java class: java.nio.ByteBuffer
java :: Java_nio_ByteBuffer :: direct
Allocate a newjava.nio.ByteBuffer with allocateDirect
			java $ Java_nio_ByteBuffer :: SELF
Type of this instance, automatically specialized in every classcore :: Pointer :: address_is_null
Is the address behind this Object at NULL?core :: Object :: class_factory
Implementation used byget_class to create the specific class.
			jvm :: JavaObject :: defaultinit
java :: Java_nio_Buffer :: defaultinit
core :: Object :: defaultinit
core :: Pointer :: defaultinit
java :: Java_nio_ByteBuffer :: direct
Allocate a newjava.nio.ByteBuffer with allocateDirect
			java :: Java_nio_Buffer :: direct_buffer_address
Address pointed by this bufferjava :: Java_nio_Buffer :: direct_buffer_capacity
Capacity of this this buffercore :: Object :: is_same_instance
Return true ifself and other are the same instance (i.e. same identity).
			core :: Object :: is_same_serialized
Isself the same as other in a serialization context?
			core :: Object :: is_same_type
Return true ifself and other have the same dynamic type.
			jvm :: JavaObject :: new_global_ref
Returns a global reference to the Java object behind this referencecore :: Object :: output_class_name
Display class name on stdout (debug only).jvm :: JavaObject :: pop_from_local_frame
Pops the current local reference frame and return a valid reference to selfjvm :: JavaObject :: pop_from_local_frame_with_env
Java implementation ofpop_from_local_frame
			jvm :: JavaObject :: to_java_string
JavaString representation of self using Java's toString
			
# A byte buffer
#
# Java class: java.nio.ByteBuffer
extern class Java_nio_ByteBuffer in "Java" `{ java.nio.ByteBuffer `}
	super Java_nio_Buffer
	# Allocate a new `java.nio.ByteBuffer` with `allocateDirect`
	new direct(size: Int) in "Java" `{
		return java.nio.ByteBuffer.allocateDirect((int)size);
	`}
end
					lib/java/ffi_support.nit:282,1--292,3