Package com.carrotsearch.hppc
Interface CharIndexedContainer
- All Superinterfaces:
CharCollection,CharContainer,Iterable<CharCursor>,RandomAccess
- All Known Implementing Classes:
CharArrayList,CharStack
@Generated(date="2021-12-15T09:45:36+0100",
value="KTypeIndexedContainer.java")
public interface CharIndexedContainer
extends CharCollection, RandomAccess
An indexed container provides random access to elements based on an
index. Indexes are zero-based.-
Method Summary
Modifier and TypeMethodDescriptionvoidadd(char e1) Adds an element to the end of this container (the last index is incremented by one).charget(int index) intindexOf(char e1) Returns the index of the first occurrence of the specified element in this list, or -1 if this list does not contain the element.voidinsert(int index, char e1) Inserts the specified element at the specified position in this list.intlastIndexOf(char e1) Returns the index of the last occurrence of the specified element in this list, or -1 if this list does not contain the element.charremove(int index) Removes the element at the specified position in this container and returns it.intremoveFirst(char e1) Removes the first element that equalse1, returning its deleted position or-1if the element was not found.intremoveLast(char e1) Removes the last element that equalse1, returning its deleted position or-1if the element was not found.voidremoveRange(int fromIndex, int toIndex) Removes from this container all of the elements with indexes betweenfromIndex, inclusive, andtoIndex, exclusive.charset(int index, char e1) Replaces the element at the specified position in this list with the specified element.Methods inherited from interface com.carrotsearch.hppc.CharCollection
clear, release, removeAll, removeAll, removeAll, retainAll, retainAllMethods inherited from interface com.carrotsearch.hppc.CharContainer
contains, forEach, isEmpty, iterator, size, toArrayMethods inherited from interface java.lang.Iterable
forEach, spliterator
-
Method Details
-
removeFirst
int removeFirst(char e1) Removes the first element that equalse1, returning its deleted position or-1if the element was not found. -
removeLast
int removeLast(char e1) Removes the last element that equalse1, returning its deleted position or-1if the element was not found. -
indexOf
int indexOf(char e1) Returns the index of the first occurrence of the specified element in this list, or -1 if this list does not contain the element. -
lastIndexOf
int lastIndexOf(char e1) Returns the index of the last occurrence of the specified element in this list, or -1 if this list does not contain the element. -
add
void add(char e1) Adds an element to the end of this container (the last index is incremented by one). -
insert
void insert(int index, char e1) Inserts the specified element at the specified position in this list.- Parameters:
index- The index at which the element should be inserted, shifting any existing and subsequent elements to the right.
-
set
char set(int index, char e1) Replaces the element at the specified position in this list with the specified element.- Returns:
- Returns the previous value in the list.
-
get
char get(int index) - Returns:
- Returns the element at index
indexfrom the list.
-
remove
char remove(int index) Removes the element at the specified position in this container and returns it. -
removeRange
void removeRange(int fromIndex, int toIndex) Removes from this container all of the elements with indexes betweenfromIndex, inclusive, andtoIndex, exclusive.
-