Package com.luciad.util.collections
Interface ILcdFloatList
- All Superinterfaces:
Cloneable
,Collection<Float>
,ILcdCloneable
,Iterable<Float>
,List<Float>
,SequencedCollection<Float>
- All Known Implementing Classes:
TLcdFloatArrayList
A
List
interface that is optimized for floats.
It provides extra methods using float primitives, instead of Float
objects.- Since:
- 9.0
-
Method Summary
Modifier and TypeMethodDescriptiondefault boolean
addAll
(float[] aValues) Equivalent toaddAll(size(), aValues, 0, aValues.length
.default boolean
addAll
(float[] aValues, int aOffset, int aLength) Equivalent toaddAll(size(), aValues, aOffset, aLength
.default boolean
addAll
(int aStartIndex, float[] aValues) Equivalent toaddAll(aStartIndex, aValues, 0, aValues.length
.default boolean
addAll
(int aStartIndex, float[] aValues, int aOffset, int aLength) AddsaLength
boolean values from the given array to this list, starting from the givenaOffset
boolean
addFloat
(float aValue) Appends the specified value to the end of this list (optional operation).void
addFloat
(int aIndex, float aValue) Inserts the specified value at the specified position in this list (optional operation).clone()
Creates and returns a copy of this object.boolean
containsFloat
(float aValue) Returnstrue
if this list contains the specified value.float
getFloat
(int aIndex) Returns the value at the specified position in this list.int
indexOfFloat
(float aValue) Returns the index of the first occurrence of the specified value in this list, or -1 if this list does not contain the value.int
lastIndexOfFloat
(float aValue) Returns the index of the last occurrence of the specified value in this list, or -1 if this list does not contain the value.boolean
removeFloat
(float aValue) Removes the first occurrence of the specified value from this list, if it is present (optional operation).float
removeFloat
(int aIndex) Removes the value at the specified position in this list (optional operation).float
setFloat
(int aIndex, float aValue) Replaces the value at the specified position in this list with the specified value (optional operation).float[]
Returns an array containing all of the values in this list in proper sequence (from first to last value).float[]
toFloatArray
(float[] anArray) Returns an array containing all of the values in this list in proper sequence (from first to last value); If the list fits in the specified array, t is returned therein.Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods inherited from interface java.util.List
add, add, addAll, addAll, addFirst, addLast, clear, contains, containsAll, equals, get, getFirst, getLast, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeFirst, removeLast, replaceAll, retainAll, reversed, set, size, sort, spliterator, subList, toArray, toArray
-
Method Details
-
getFloat
float getFloat(int aIndex) Returns the value at the specified position in this list.- Parameters:
aIndex
- index of the value to return- Returns:
- the value at the specified position in this list
- Throws:
IndexOutOfBoundsException
- if the index is out of range(index < 0 || index >= size())
.
-
setFloat
float setFloat(int aIndex, float aValue) Replaces the value at the specified position in this list with the specified value (optional operation).- Parameters:
aIndex
- index of the value to replaceaValue
- value to be stored at the specified position- Returns:
- the value previously at the specified position
- Throws:
UnsupportedOperationException
- if the set operation is not supported by this listIndexOutOfBoundsException
- if the index is out of range(index < 0 || index >= size())
-
addFloat
boolean addFloat(float aValue) Appends the specified value to the end of this list (optional operation).- Parameters:
aValue
- value to be appended to this list- Returns:
true
- Throws:
UnsupportedOperationException
- if the add operation is not supported by this list
-
addFloat
void addFloat(int aIndex, float aValue) Inserts the specified value at the specified position in this list (optional operation). Shifts the value currently at that position (if any) and any subsequent values to the right (adds one to their indices).- Parameters:
aIndex
- index at which the specified value is to be insertedaValue
- value to be inserted- Throws:
UnsupportedOperationException
- if the add operation is not supported by this listIndexOutOfBoundsException
- if the index is out of range(index < 0 || index > size())
-
addAll
default boolean addAll(float[] aValues) Equivalent toaddAll(size(), aValues, 0, aValues.length
.- Since:
- 2018.0
- See Also:
-
addAll
default boolean addAll(float[] aValues, int aOffset, int aLength) Equivalent toaddAll(size(), aValues, aOffset, aLength
.- Since:
- 2018.0
- See Also:
-
addAll
default boolean addAll(int aStartIndex, float[] aValues) Equivalent toaddAll(aStartIndex, aValues, 0, aValues.length
.- Since:
- 2018.0
- See Also:
-
addAll
default boolean addAll(int aStartIndex, float[] aValues, int aOffset, int aLength) AddsaLength
boolean values from the given array to this list, starting from the givenaOffset
- Parameters:
aStartIndex
- The position in this list where to start inserting the given boolean values.aValues
- The array containing the boolean values to add to this listaOffset
- The offset inaValues
from where to start copying the boolean valuesaLength
- The number of boolean values to copy fromaValues
to this list.- Returns:
- Whether this list was modified as a result of this call.
- Throws:
IndexOutOfBoundsException
- ifaStartIndex
is less than zero or larger than the current size of this list.IndexOutOfBoundsException
- ifaOffset
+aLength
exceeds the length ofaValues
IndexOutOfBoundsException
- ifaOffset
is negativeIndexOutOfBoundsException
- ifaLength
is negative- Since:
- 2018.0
-
removeFloat
boolean removeFloat(float aValue) Removes the first occurrence of the specified value from this list, if it is present (optional operation). If this list does not contain the value, it is unchanged. Returnstrue
if this list contained the specified value (or equivalently, if this list changed as a result of the call).- Parameters:
aValue
- value to be removed from this list, if present- Returns:
true
if this list contained the specified value- Throws:
UnsupportedOperationException
- if the remove operation is not supported by this list
-
removeFloat
float removeFloat(int aIndex) Removes the value at the specified position in this list (optional operation). Shifts any subsequent values to the left (subtracts one from their indices). Returns the value that was removed from the list.- Parameters:
aIndex
- the index of the value to be removed- Returns:
- the value previously at the specified position
- Throws:
UnsupportedOperationException
- if the remove operation is not supported by this listIndexOutOfBoundsException
- if the index is out of range(index < 0 || index >= size())
-
toFloatArray
float[] toFloatArray()Returns an array containing all of the values in this list in proper sequence (from first to last value). The returned array will be "safe" in that no references to it are maintained by this list. (In other words, this method must allocate a new array even if this list is backed by an array). The caller is thus free to modify the returned array.- Returns:
- an array containing all of the values in this list in proper sequence
-
toFloatArray
float[] toFloatArray(float[] anArray) Returns an array containing all of the values in this list in proper sequence (from first to last value); If the list fits in the specified array, t is returned therein. Otherwise, a new array is allocated with the size of this list. If the list fits in the specified array with room to spare (i.e., the array has more values than the list), the value in the array immediately following the end of the list is set to 0. (This is useful in determining the length of the list only if the caller knows that the list does not contain any 0 values.)- Parameters:
anArray
- the array into which the values of this list are to be stored, if it is big enough; otherwise, a new array is allocated for this purpose.- Returns:
- an array containing the values of this list
- Throws:
NullPointerException
- if the specified array is null
-
containsFloat
boolean containsFloat(float aValue) Returnstrue
if this list contains the specified value.- Parameters:
aValue
- value whose presence in this list is to be tested- Returns:
true
if this list contains the specified value
-
indexOfFloat
int indexOfFloat(float aValue) Returns the index of the first occurrence of the specified value in this list, or -1 if this list does not contain the value.- Parameters:
aValue
- value to search for- Returns:
- the index of the first occurrence of the specified value in this list, or -1 if this list does not contain the value
-
lastIndexOfFloat
int lastIndexOfFloat(float aValue) Returns the index of the last occurrence of the specified value in this list, or -1 if this list does not contain the value.- Parameters:
aValue
- value to search for- Returns:
- the index of the last occurrence of the specified value in this list, or -1 if this list does not contain the value
-
clone
ILcdFloatList clone()Creates and returns a copy of this object.- Specified by:
clone
in interfaceILcdCloneable
- Returns:
- a copy of this object.
- See Also:
-