Package gov.nih.mipav.model.structures
Class BufferFloat
- java.lang.Object
-
- gov.nih.mipav.model.structures.BufferBase
-
- gov.nih.mipav.model.structures.BufferFloat
-
- All Implemented Interfaces:
java.io.Serializable
public class BufferFloat extends BufferBase
This class extends the abstract BufferBase class. It allocates the space for a float buffer on construction. This class also defines the accessors to the data as required by the abstract base class.- Version:
- 0.1 Aug 1, 1997
- Author:
- Matthew J. McAuliffe, Ph.D.
- See Also:
BufferBase
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected float[]
dataArray
1D Data array of floats.private static long
serialVersionUID
Use serialVersionUID for interoperability.
-
Constructor Summary
Constructors Constructor Description BufferFloat()
Default constructor.BufferFloat(int size)
Constructor that allocates memory.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
finalize()
Clean up memory.protected java.lang.Number
get(int position)
Gets the data in Number format.protected boolean
getBoolean(int position)
Gets the data from the object.protected byte
getByte(int position)
Gets the data in byte format.protected double
getDouble(int position)
Gets the data in double format.protected float
getFloat(int position)
Gets the data in float format.protected int
getInt(int position)
Gets the data in int format.protected long
getLong(int position)
Gets the data in long format.protected short
getShort(int position)
Gets the data in short format.protected java.lang.Class<?>
getType()
Return float.classprotected short
getUByte(int position)
Gets the data in unsigned byte format.protected long
getUInt(int position)
Gets the data in unsigned short format.protected int
getUShort(int position)
Gets the data in unsigned short format.int
length()
Returns the length of the data array.protected void
set(int position, float value)
Sets the data in float format.protected void
set(int position, java.lang.Number value)
Sets the data in float format.protected void
setBoolean(int position, boolean value)
Sets the data in float format.protected void
setByte(int position, byte value)
Sets the data in float format.protected void
setDouble(int position, double value)
Sets the double data in float format.protected void
setFloat(int position, float value)
Sets the float data in float format.protected void
setInt(int position, int value)
Sets the int data in float format.protected void
setLong(int position, long value)
Sets the long data in float format.protected void
setShort(int position, short value)
Sets the to set short data in float format.protected void
setUByte(int position, short value)
Sets the data in float format.protected void
setUInt(int position, long value)
Sets the int value in unsigned short format.protected void
setUShort(int position, int value)
Sets the unsigned data in float format.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Use serialVersionUID for interoperability.- See Also:
- Constant Field Values
-
dataArray
protected float[] dataArray
1D Data array of floats.
-
-
Method Detail
-
finalize
public void finalize() throws java.lang.Throwable
Clean up memory.- Specified by:
finalize
in classBufferBase
- Throws:
java.lang.Throwable
- DOCUMENT ME!
-
getType
protected final java.lang.Class<?> getType()
Return float.class- Specified by:
getType
in classBufferBase
- Returns:
- one of the primitive class objects, like float.class (== Float.TYPE)
-
length
public int length()
Returns the length of the data array.- Specified by:
length
in classBufferBase
- Returns:
- length of the array
-
get
protected final java.lang.Number get(int position)
Gets the data in Number format.- Specified by:
get
in classBufferBase
- Parameters:
position
- position in dataArray- Returns:
- Number object of the data
-
getBoolean
protected final boolean getBoolean(int position)
Gets the data from the object.- Specified by:
getBoolean
in classBufferBase
- Parameters:
position
- position in dataArray to get- Returns:
- true if data at position is not equal to zero else its false
-
getByte
protected final byte getByte(int position)
Gets the data in byte format.- Specified by:
getByte
in classBufferBase
- Parameters:
position
- position in dataArray- Returns:
- the byte value
-
getDouble
protected final double getDouble(int position)
Gets the data in double format.- Specified by:
getDouble
in classBufferBase
- Parameters:
position
- position in dataArray- Returns:
- the float value as a double
-
getFloat
protected final float getFloat(int position)
Gets the data in float format.- Specified by:
getFloat
in classBufferBase
- Parameters:
position
- position in dataArray- Returns:
- the float value as a float
-
getInt
protected final int getInt(int position)
Gets the data in int format.- Specified by:
getInt
in classBufferBase
- Parameters:
position
- position in dataArray- Returns:
- the float value as an int
-
getLong
protected final long getLong(int position)
Gets the data in long format.- Specified by:
getLong
in classBufferBase
- Parameters:
position
- position in dataArray- Returns:
- the float value as a long
-
getShort
protected final short getShort(int position)
Gets the data in short format.- Specified by:
getShort
in classBufferBase
- Parameters:
position
- position in dataArray- Returns:
- the float value as a short
-
getUByte
protected final short getUByte(int position)
Gets the data in unsigned byte format.- Specified by:
getUByte
in classBufferBase
- Parameters:
position
- position in dataArray- Returns:
- the value as a short (unsigned byte)
-
getUInt
protected final long getUInt(int position)
Gets the data in unsigned short format.- Specified by:
getUInt
in classBufferBase
- Parameters:
position
- position in dataArray- Returns:
- the float value as int (unsigned short)
-
getUShort
protected final int getUShort(int position)
Gets the data in unsigned short format.- Specified by:
getUShort
in classBufferBase
- Parameters:
position
- position in dataArray- Returns:
- the float value as int (unsigned short)
-
set
protected final void set(int position, java.lang.Number value)
Sets the data in float format.- Specified by:
set
in classBufferBase
- Parameters:
position
- position in data arrayvalue
- the new data value to be placed in the data array
-
set
protected final void set(int position, float value)
Sets the data in float format.- Parameters:
position
- position in data arrayvalue
- the new data value to be placed in the data array
-
setBoolean
protected final void setBoolean(int position, boolean value)
Sets the data in float format. One if value is true, zero if value is false- Specified by:
setBoolean
in classBufferBase
- Parameters:
position
- position in dataArrayvalue
- the new data value to be placed in the data array
-
setByte
protected final void setByte(int position, byte value)
Sets the data in float format.- Specified by:
setByte
in classBufferBase
- Parameters:
position
- position in dataArrayvalue
- the new data value to be placed in the data array
-
setDouble
protected final void setDouble(int position, double value)
Sets the double data in float format.- Specified by:
setDouble
in classBufferBase
- Parameters:
position
- position in dataArrayvalue
- the new data value to be placed in the data array
-
setFloat
protected final void setFloat(int position, float value)
Sets the float data in float format.- Specified by:
setFloat
in classBufferBase
- Parameters:
position
- position in dataArrayvalue
- the new data value to be placed in the data array
-
setInt
protected final void setInt(int position, int value)
Sets the int data in float format.- Specified by:
setInt
in classBufferBase
- Parameters:
position
- position in dataArrayvalue
- the new data value to be placed in the data array
-
setLong
protected final void setLong(int position, long value)
Sets the long data in float format.- Specified by:
setLong
in classBufferBase
- Parameters:
position
- position in dataArrayvalue
- the new data value to be placed in the data array
-
setShort
protected final void setShort(int position, short value)
Sets the to set short data in float format.- Specified by:
setShort
in classBufferBase
- Parameters:
position
- position in dataArrayvalue
- the new data value to be placed in the data array
-
setUByte
protected final void setUByte(int position, short value)
Sets the data in float format.- Specified by:
setUByte
in classBufferBase
- Parameters:
position
- position in dataArrayvalue
- the new data value to be placed in the data array
-
setUInt
protected final void setUInt(int position, long value)
Sets the int value in unsigned short format.- Specified by:
setUInt
in classBufferBase
- Parameters:
position
- position in dataArrayvalue
- the new data value to be placed in the data array
-
setUShort
protected final void setUShort(int position, int value)
Sets the unsigned data in float format.- Specified by:
setUShort
in classBufferBase
- Parameters:
position
- position in dataArrayvalue
- the new data value to be placed in the data array
-
-