Constructor and Description |
---|
JreArrayOf() |
Modifier and Type | Method and Description |
---|---|
ArrayOf<T> |
concat(ArrayOf<T> values)
Returns a new array that is the concatenation of this array and
values . |
boolean |
contains(T value)
Indicates whether the array contains the specified value.
|
T |
get(int index)
Gets the value at a given index.
|
int |
indexOf(T value)
Returns the index of the specified value or
-1 if the value is
not found. |
void |
insert(int index,
T value)
Inserts a new element into the array at the specified index.
|
boolean |
isEmpty()
Returns true if the length of the array is zero.
|
String |
join()
Convert each element of the array to a String and join them with a comma
separator.
|
String |
join(String separator)
Convert each element of the array to a String and join them with a comma
separator.
|
int |
length()
Gets the length of the array.
|
T |
peek()
Returns the last value of the array;
|
T |
pop()
Remove and return the element from the end of the array.
|
void |
push(T value)
Pushes the given value onto the end of the array.
|
void |
remove(T value)
Searches for the specified value in the array and removes the first
occurrence if found.
|
void |
removeByIndex(int index)
Removes the element at the specified index.
|
void |
set(int index,
T value)
sets the value value at a given index.
|
void |
setLength(int length)
Reset the length of the array.
|
T |
shift()
Shifts the first value off the array.
|
void |
sort(CanCompare<T> comparator)
Sorts the contents of the Array based on the
CanCompare . |
ArrayOf<T> |
splice(int index,
int count)
Removes the specified number of elements starting at index and returns the
removed elements.
|
void |
unshift(T value)
Shifts a value onto the beginning of the array.
|
public ArrayOf<T> concat(ArrayOf<T> values)
ArrayOf
values
. This method does not mutate the current array.public boolean contains(T value)
ArrayOf
public T get(int index)
ArrayOf
public int indexOf(T value)
ArrayOf
-1
if the value is
not found.public void insert(int index, T value)
ArrayOf
public boolean isEmpty()
ArrayOf
public String join()
ArrayOf
public String join(String separator)
ArrayOf
public int length()
ArrayOf
public T peek()
ArrayOf
public T pop()
ArrayOf
public void push(T value)
ArrayOf
public void remove(T value)
ArrayOf
public void removeByIndex(int index)
ArrayOf
removeByIndex
in interface ArrayOf<T>
public void set(int index, T value)
ArrayOf
public void setLength(int length)
ArrayOf
public T shift()
ArrayOf
public void sort(CanCompare<T> comparator)
ArrayOf
CanCompare
.public ArrayOf<T> splice(int index, int count)
ArrayOf
Copyright © 2018. All rights reserved.