public final class JsArrayOfInt extends JsArrayInteger implements ArrayOfInt
ArrayOfInt
.Modifier | Constructor and Description |
---|---|
protected |
JsArrayOfInt() |
Modifier and Type | Method and Description |
---|---|
JsArrayOfInt |
concat(ArrayOfInt values)
Returns a new array that is the concatenation of this array and
values . |
boolean |
contains(int value)
Indicates whether the array contains the specified value.
|
static JsArrayOfInt |
create()
Create a new empty instance.
|
int |
indexOf(int value)
Returns the index of the specified value or
-1 if the value is
not found. |
void |
insert(int index,
int value)
Inserts a new element into the array at the specified index.
|
boolean |
isEmpty()
Returns true if the length of the array is zero.
|
boolean |
isSet(int index)
Check that the specified
index has been initialized to a valid
value. |
int |
peek()
Returns the last value of the array;
|
int |
pop()
Remove and return the element from the end of the array.
|
void |
remove(int 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 |
sort()
Sorts the contents of the array in ascending order.
|
void |
sort(CanCompareInt comparator)
Sorts the contents of the Array based on the
CanCompareInt . |
JsArrayOfInt |
splice(int index,
int count)
Removes the specified number of elements starting at index and returns the
removed elements.
|
get, join, join, length, push, set, setLength, shift, unshift
cast, createArray, createArray, createFunction, createObject, equals, hashCode, toSource, toString
public static JsArrayOfInt create()
public JsArrayOfInt concat(ArrayOfInt values)
ArrayOfInt
values
. This method does not mutate the current array.concat
in interface ArrayOfInt
public boolean contains(int value)
ArrayOfInt
contains
in interface ArrayOfInt
public int indexOf(int value)
ArrayOfInt
-1
if the value is
not found.indexOf
in interface ArrayOfInt
public void insert(int index, int value)
ArrayOfInt
insert
in interface ArrayOfInt
public boolean isEmpty()
ArrayOfInt
isEmpty
in interface ArrayOfInt
public boolean isSet(int index)
ArrayOfInt
index
has been initialized to a valid
value.isSet
in interface ArrayOfInt
public int peek()
ArrayOfInt
peek
in interface ArrayOfInt
public int pop()
ArrayOfInt
pop
in interface ArrayOfInt
public void remove(int value)
ArrayOfInt
remove
in interface ArrayOfInt
public void removeByIndex(int index)
ArrayOfInt
removeByIndex
in interface ArrayOfInt
public void sort()
ArrayOfInt
sort
in interface ArrayOfInt
public void sort(CanCompareInt comparator)
ArrayOfInt
CanCompareInt
.sort
in interface ArrayOfInt
public JsArrayOfInt splice(int index, int count)
ArrayOfInt
splice
in interface ArrayOfInt
Copyright © 2018. All rights reserved.