Class FloatList


  • public class FloatList
    extends PrimitiveList
    Extendable array of floats.
    Since:
    12 Oct 2006
    Author:
    Mark Taylor
    • Constructor Summary

      Constructors 
      Constructor Description
      FloatList()
      Constructs a new list.
      FloatList​(float[] array)
      Constructs a new list initialised to the contents of a given array.
      FloatList​(int size)
      Constructs a new list with a given initial capacity.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void add​(float value)
      Appends a value to the end of this list.
      float get​(int i)
      Returns the element at a given position.
      void set​(int i, float value)
      Sets the element at a given position.
      float[] toFloatArray()
      Returns the contents of this list as an array.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • FloatList

        public FloatList()
        Constructs a new list.
      • FloatList

        public FloatList​(int size)
        Constructs a new list with a given initial capacity.
        Parameters:
        size - initial capacity
      • FloatList

        public FloatList​(float[] array)
        Constructs a new list initialised to the contents of a given array.
        Parameters:
        array - array whose contents form initial contents of list
    • Method Detail

      • get

        public float get​(int i)
        Returns the element at a given position.
        Parameters:
        i - index
        Returns:
        element at i
      • set

        public void set​(int i,
                        float value)
        Sets the element at a given position.
        Parameters:
        i - index
        value - new value for element i
      • add

        public void add​(float value)
        Appends a value to the end of this list.
        Parameters:
        value - value to append
      • toFloatArray

        public float[] toFloatArray()
        Returns the contents of this list as an array.
        Returns:
        copy of list contents