|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.joe_e.array.ConstArray.Builder<E>
public static class ConstArray.Builder<E>
A ConstArray
factory.
Method Summary | |
---|---|
void |
append(E newE)
Appends an element to the Array |
void |
append(E[] newEs)
Appends all elements from a Java array to the Array |
void |
append(E[] newEs,
int off,
int len)
Appends a range of elements from a Java array to the Array |
int |
length()
Gets the current number of elements in the Array |
ConstArray<E> |
snapshot()
Create a snapshot of the current content. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public void append(E newE)
append
in interface ArrayBuilder<E>
newE
- the element to append
NegativeArraySizeException
- if the resulting internal array
would exceed the maximum length of a Java array. The builder is
unmodified.public void append(E[] newEs)
append
in interface ArrayBuilder<E>
newEs
- the element to append
IndexOutOfBoundsException
- if the resulting internal array
would exceed the maximum length of a Java array. The builder is
unmodified.public void append(E[] newEs, int off, int len)
append
in interface ArrayBuilder<E>
newEs
- the source arrayoff
- the index of the first element to appendlen
- the number of elements to append
IndexOutOfBoundsException
- if an out-of-bounds index would
be referenced or the resulting internal array would exceed the
maximum length of a Java array. The builder is unmodified.public int length()
length
in interface ArrayBuilder<E>
public ConstArray<E> snapshot()
snapshot
in interface ArrayBuilder<E>
ConstArray
containing the elements so far
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |