|
|
|
@ -611,12 +611,12 @@ public final class Internal { |
|
|
|
|
int getInt(int index); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Like {@link #add(Integer)} but more efficient in that it doesn't box the element. |
|
|
|
|
* Like {@link #add(Object)} but more efficient in that it doesn't box the element. |
|
|
|
|
*/ |
|
|
|
|
void addInt(int element); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Like {@link #set(int, Integer)} but more efficient in that it doesn't box the element. |
|
|
|
|
* Like {@link #set(int, Object)} but more efficient in that it doesn't box the element. |
|
|
|
|
*/ |
|
|
|
|
int setInt(int index, int element); |
|
|
|
|
|
|
|
|
@ -639,12 +639,12 @@ public final class Internal { |
|
|
|
|
boolean getBoolean(int index); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Like {@link #add(Boolean)} but more efficient in that it doesn't box the element. |
|
|
|
|
* Like {@link #add(Object)} but more efficient in that it doesn't box the element. |
|
|
|
|
*/ |
|
|
|
|
void addBoolean(boolean element); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Like {@link #set(int, Boolean)} but more efficient in that it doesn't box the element. |
|
|
|
|
* Like {@link #set(int, Object)} but more efficient in that it doesn't box the element. |
|
|
|
|
*/ |
|
|
|
|
boolean setBoolean(int index, boolean element); |
|
|
|
|
|
|
|
|
@ -667,12 +667,12 @@ public final class Internal { |
|
|
|
|
long getLong(int index); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Like {@link #add(Long)} but more efficient in that it doesn't box the element. |
|
|
|
|
* Like {@link #add(Object)} but more efficient in that it doesn't box the element. |
|
|
|
|
*/ |
|
|
|
|
void addLong(long element); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Like {@link #set(int, Long)} but more efficient in that it doesn't box the element. |
|
|
|
|
* Like {@link #set(int, Object)} but more efficient in that it doesn't box the element. |
|
|
|
|
*/ |
|
|
|
|
long setLong(int index, long element); |
|
|
|
|
|
|
|
|
@ -695,12 +695,12 @@ public final class Internal { |
|
|
|
|
double getDouble(int index); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Like {@link #add(Double)} but more efficient in that it doesn't box the element. |
|
|
|
|
* Like {@link #add(Object)} but more efficient in that it doesn't box the element. |
|
|
|
|
*/ |
|
|
|
|
void addDouble(double element); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Like {@link #set(int, Double)} but more efficient in that it doesn't box the element. |
|
|
|
|
* Like {@link #set(int, Object)} but more efficient in that it doesn't box the element. |
|
|
|
|
*/ |
|
|
|
|
double setDouble(int index, double element); |
|
|
|
|
|
|
|
|
@ -723,12 +723,12 @@ public final class Internal { |
|
|
|
|
float getFloat(int index); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Like {@link #add(Float)} but more efficient in that it doesn't box the element. |
|
|
|
|
* Like {@link #add(Object)} but more efficient in that it doesn't box the element. |
|
|
|
|
*/ |
|
|
|
|
void addFloat(float element); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Like {@link #set(int, Float)} but more efficient in that it doesn't box the element. |
|
|
|
|
* Like {@link #set(int, Object)} but more efficient in that it doesn't box the element. |
|
|
|
|
*/ |
|
|
|
|
float setFloat(int index, float element); |
|
|
|
|
|
|
|
|
|