Table of Contents

Class FloatBuffer

Namespace
Java.Nio
Assembly
MASES.JNet.dll
public class FloatBuffer : Buffer, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition
Inheritance
JVMBridgeBase
JVMBridgeBase<Buffer>
FloatBuffer
Implements
IJVMBridgeCore
IJVMBridgeBaseStatic
IJVMBridgeBase
IJVMBridgeDefinition
Inherited Members
JVMBridgeBase<Buffer>.IsAssignableFrom(IJavaType)
JVMBridgeBase<Buffer>.IsAssignableFrom<T>()
JVMBridgeBase<Buffer>.Execute<T>(params T[])
JVMBridgeBase<Buffer>.DynBridgeClazz
JVMBridgeBase<Buffer>.BridgeClazz
JVMBridgeBase.RuntimeClassNameOf<T>()
JVMBridgeBase.ClassNameOf<T>()
JVMBridgeBase.ClassOf<T>()
JVMBridgeBase.WrapsDirect<TNewClass>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass, TReturn>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass, TReturn, TConverter>(IJavaObject)
JVMBridgeBase.MonitorEnter()
JVMBridgeBase.MonitorExit()
JVMBridgeBase.IsInstanceOf(IJavaType)
JVMBridgeBase.IsInstanceOf<T>()
JVMBridgeBase.RuntimeIsInstanceOf<T>()
JVMBridgeBase.CastTo<TNewClass>()
JVMBridgeBase.CastDirect<TNewClass>()
JVMBridgeBase.Dispose()
JVMBridgeBase.ToString()
JVMBridgeBase.GetHashCode()
JVMBridgeBase.Notify()
JVMBridgeBase.NotifyAll()
JVMBridgeBase.Wait()
JVMBridgeBase.DynBridgeInstance
JVMBridgeBase.BridgeInstance
JVMBridgeBase.IsBridgeListener
Extension Methods

Constructors

FloatBuffer()

Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge

[Obsolete("FloatBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public FloatBuffer()

FloatBuffer(params object[])

Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class

[Obsolete("FloatBuffer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public FloatBuffer(params object[] args)

Parameters

args object[]

Properties

BridgeClassName

public override string BridgeClassName { get; }

Property Value

string

IsBridgeAbstract

public override bool IsBridgeAbstract { get; }

Property Value

bool

IsBridgeCloseable

public override bool IsBridgeCloseable { get; }

Property Value

bool

IsBridgeInterface

public override bool IsBridgeInterface { get; }

Property Value

bool

IsBridgeStatic

public override bool IsBridgeStatic { get; }

Property Value

bool

Methods

Allocate(int)

public static FloatBuffer Allocate(int arg0)

Parameters

arg0 int

int

Returns

FloatBuffer

FloatBuffer

AsReadOnlyBuffer()

public FloatBuffer AsReadOnlyBuffer()

Returns

FloatBuffer

FloatBuffer

Compact()

public FloatBuffer Compact()

Returns

FloatBuffer

FloatBuffer

CompareTo(FloatBuffer)

public int CompareTo(FloatBuffer arg0)

Parameters

arg0 FloatBuffer

FloatBuffer

Returns

int

int

CompareTo(object)

public int CompareTo(object arg0)

Parameters

arg0 object

object

Returns

int

int

From(float[], bool, bool, int)

Creates a new FloatBuffer in the JVM which belongs to data

public static FloatBuffer From(float[] data, bool useMemoryControlBlock = true, bool arrangeCapacity = true, int timeToLive = -1)

Parameters

data float[]

The data to be shared

useMemoryControlBlock bool

Appends to the end of the data a memory block will be used to controls and arbitrates memory between CLR and JVM

arrangeCapacity bool

If true the float array in data will be resized to the next power of 2, so capacity will be memory aligned and the limit of java.nio.ByteBuffer will be current size of data

timeToLive int

The time to live, expressed in milliseconds, the underlying memory shall remain available; if the time to live expires the pinned memory is retired leaving potentially the JVM under the possibility of an access violation.

Returns

FloatBuffer

A new instance of FloatBuffer

Get()

public float Get()

Returns

float

float

Get(int)

public float Get(int arg0)

Parameters

arg0 int

int

Returns

float

float

Get(float[])

public FloatBuffer Get(float[] arg0)

Parameters

arg0 float[]

float

Returns

FloatBuffer

FloatBuffer

Get(float[], int, int)

public FloatBuffer Get(float[] arg0, int arg1, int arg2)

Parameters

arg0 float[]

float

arg1 int

int

arg2 int

int

Returns

FloatBuffer

FloatBuffer

Mismatch(FloatBuffer)

public int Mismatch(FloatBuffer arg0)

Parameters

arg0 FloatBuffer

FloatBuffer

Returns

int

int

Order()

public ByteOrder Order()

Returns

ByteOrder

ByteOrder

Put(FloatBuffer)

public FloatBuffer Put(FloatBuffer arg0)

Parameters

arg0 FloatBuffer

FloatBuffer

Returns

FloatBuffer

FloatBuffer

Put(int, float)

public FloatBuffer Put(int arg0, float arg1)

Parameters

arg0 int

int

arg1 float

float

Returns

FloatBuffer

FloatBuffer

Put(float)

public FloatBuffer Put(float arg0)

Parameters

arg0 float

float

Returns

FloatBuffer

FloatBuffer

Put(float[])

public FloatBuffer Put(float[] arg0)

Parameters

arg0 float[]

float

Returns

FloatBuffer

FloatBuffer

Put(float[], int, int)

public FloatBuffer Put(float[] arg0, int arg1, int arg2)

Parameters

arg0 float[]

float

arg1 int

int

arg2 int

int

Returns

FloatBuffer

FloatBuffer

ToArray(bool)

Returns the float array managed from this FloatBuffer

public float[] ToArray(bool bypassDirectConvert = false)

Parameters

bypassDirectConvert bool

true to bypass the conversion using direct buffer

Returns

float[]

The float array managed from this FloatBuffer

ToDirectBuffer()

Returns an instance of MASES.JCOBridge.C2JBridge.JCOBridgeDirectBuffer<T>

public JCOBridgeDirectBuffer<float> ToDirectBuffer()

Returns

JCOBridgeDirectBuffer<float>

The MASES.JCOBridge.C2JBridge.JCOBridgeDirectBuffer<T> associated to this instance

Remarks

The returned MASES.JCOBridge.C2JBridge.JCOBridgeDirectBuffer<T> can be used to directly access and manages JVM memory without any memory move

Wrap(float[])

public static FloatBuffer Wrap(float[] arg0)

Parameters

arg0 float[]

float

Returns

FloatBuffer

FloatBuffer

Wrap(float[], int, int)

public static FloatBuffer Wrap(float[] arg0, int arg1, int arg2)

Parameters

arg0 float[]

float

arg1 int

int

arg2 int

int

Returns

FloatBuffer

FloatBuffer

Operators

implicit operator Comparable(FloatBuffer)

Converter from FloatBuffer to Comparable

public static implicit operator Comparable(FloatBuffer t)

Parameters

t FloatBuffer

Returns

Comparable

implicit operator Comparable<FloatBuffer>(FloatBuffer)

Converter from FloatBuffer to Comparable<T>

public static implicit operator Comparable<FloatBuffer>(FloatBuffer buffer)

Parameters

buffer FloatBuffer

Returns

Comparable<FloatBuffer>

implicit operator JCOBridgeDirectBuffer<float>(FloatBuffer)

Converts an instance of FloatBuffer into MASES.JCOBridge.C2JBridge.JCOBridgeDirectBuffer<T>

public static implicit operator JCOBridgeDirectBuffer<float>(FloatBuffer t)

Parameters

t FloatBuffer

Returns

JCOBridgeDirectBuffer<float>

implicit operator float[](FloatBuffer)

Converts an instance of FloatBuffer into float array

public static implicit operator float[](FloatBuffer t)

Parameters

t FloatBuffer

Returns

float[]

Remarks

If the FloatBuffer supports direct access the function tries to move data from JVM memory without JNI, otherwise fallback to the standard memory copy.

implicit operator FloatBuffer(float[])

Converts an instance of float array into FloatBuffer using the default parameters of From(float[], bool, bool, int)

public static implicit operator FloatBuffer(float[] t)

Parameters

t float[]

Returns

FloatBuffer

Remarks

If the JVM supports direct access the function will share with the JVM the memory without JNI, otherwise fallback to the standard memory copy.