Class DataStorage.Iterator
- All Implemented Interfaces:
Serializable
,AutoCloseable
- Direct Known Subclasses:
DataStorage.AbstractIterator
- Enclosing class:
DataStorage
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Closes the iterator.<T> T
Gets the current element as a the specified element type.double
Gets the current element as adouble
.float
getFloat()
Gets the current element as afloat
.int
getInt()
Gets the current element as anint
.long
getLong()
Gets the current element as along
.boolean
hasNext()
Check ifnext()
can be called without going past the end of the sequence.void
next()
Advances the position in the stream by one element.<T> void
Sets the current element as the specified element type.void
setDouble
(double value) Sets the current element as adouble
.void
setFloat
(float value) Sets the current element as afloat
.void
setInt
(int value) Sets the current element as anint
.void
setLong
(long value) Sets the current element as along
.
-
Constructor Details
-
Iterator
protected Iterator()Default constructor. Can be used e.g. for simple anonymous subclasses.
-
-
Method Details
-
hasNext
public boolean hasNext()Check ifnext()
can be called without going past the end of the sequence.That is, if
next()
can be called without deliberately causing an exception. Note: It is important that the iterator is iterated past the last element; that isnext()
is calledstartPosition - endPosition
times. Theget()
orset()
methods should not be called for the last element.The default implementation always returns
false
.- Returns:
true
ifnext()
can be called, otherwisefalse
.
-
next
Advances the position in the stream by one element.Note: It is important that the iterator is iterated past the last element; that is
next()
is calledstartPosition - endPosition
times. Theget()
orset()
methods should not be called for the last element.The default implementation always throws
IllegalStateException
.- Throws:
IllegalStateException
- If the iterator has been iterated to the end already.ApfloatRuntimeException
-
getInt
public int getInt() throws UnsupportedOperationException, IllegalStateException, ApfloatRuntimeExceptionGets the current element as anint
.The default implementation calls
get(Class)
with argumentInteger.TYPE
.- Returns:
- The current element as an
int
. - Throws:
UnsupportedOperationException
- If the element type of the data storage can't be converted to anint
.IllegalStateException
- If the iterator is at the end.ApfloatRuntimeException
-
getLong
public long getLong() throws UnsupportedOperationException, IllegalStateException, ApfloatRuntimeExceptionGets the current element as along
.The default implementation calls
get(Class)
with argumentLong.TYPE
.- Returns:
- The current element as a
long
. - Throws:
UnsupportedOperationException
- If the element type of the data storage can't be converted to along
.IllegalStateException
- If the iterator is at the end.ApfloatRuntimeException
-
getFloat
public float getFloat() throws UnsupportedOperationException, IllegalStateException, ApfloatRuntimeExceptionGets the current element as afloat
.The default implementation calls
get(Class)
with argumentFloat.TYPE
.- Returns:
- The current element as a
float
. - Throws:
UnsupportedOperationException
- If the element type of the data storage can't be converted to afloat
.IllegalStateException
- If the iterator is at the end.ApfloatRuntimeException
-
getDouble
public double getDouble() throws UnsupportedOperationException, IllegalStateException, ApfloatRuntimeExceptionGets the current element as adouble
.The default implementation calls
get(Class)
with argumentDouble.TYPE
.- Returns:
- The current element as a
double
. - Throws:
UnsupportedOperationException
- If the element type of the data storage can't be converted to adouble
.IllegalStateException
- If the iterator is at the end.ApfloatRuntimeException
-
setInt
public void setInt(int value) throws UnsupportedOperationException, IllegalStateException, ApfloatRuntimeException Sets the current element as anint
.The default implementation calls
set(Class,Object)
with first argumentInteger.TYPE
.- Parameters:
value
- The value to be set to the current element as anint
.- Throws:
UnsupportedOperationException
- If the element type of the data storage can't be converted to anint
.IllegalStateException
- If the iterator is at the end.ApfloatRuntimeException
-
setLong
public void setLong(long value) throws UnsupportedOperationException, IllegalStateException, ApfloatRuntimeException Sets the current element as along
.The default implementation calls
set(Class,Object)
with first argumentLong.TYPE
.- Parameters:
value
- The value to be set to the current element as along
.- Throws:
UnsupportedOperationException
- If the element type of the data storage can't be converted to along
.IllegalStateException
- If the iterator is at the end.ApfloatRuntimeException
-
setFloat
public void setFloat(float value) throws UnsupportedOperationException, IllegalStateException, ApfloatRuntimeException Sets the current element as afloat
.The default implementation calls
set(Class,Object)
with first argumentFloat.TYPE
.- Parameters:
value
- The value to be set to the current element as afloat
.- Throws:
UnsupportedOperationException
- If the element type of the data storage can't be converted to afloat
.IllegalStateException
- If the iterator is at the end.ApfloatRuntimeException
-
setDouble
public void setDouble(double value) throws UnsupportedOperationException, IllegalStateException, ApfloatRuntimeException Sets the current element as adouble
.The default implementation calls
set(Class,Object)
with first argumentDouble.TYPE
.- Parameters:
value
- The value to be set to the current element as adouble
.- Throws:
UnsupportedOperationException
- If the element type of the data storage can't be converted to adouble
.IllegalStateException
- If the iterator is at the end.ApfloatRuntimeException
-
get
public <T> T get(Class<T> type) throws UnsupportedOperationException, IllegalStateException, ApfloatRuntimeException Gets the current element as a the specified element type.The default implementation always throws
UnsupportedOperationException
.- Type Parameters:
T
- The type of the element.- Parameters:
type
- The type of the element.- Returns:
- The current element as the specified type.
- Throws:
UnsupportedOperationException
- If the element type of the data storage can't be converted to the specified type.IllegalStateException
- If the iterator is at the end.ApfloatRuntimeException
- Since:
- 1.7.0
-
set
public <T> void set(Class<T> type, T value) throws UnsupportedOperationException, IllegalArgumentException, IllegalStateException, ApfloatRuntimeException Sets the current element as the specified element type.The default implementation always throws
UnsupportedOperationException
.- Type Parameters:
T
- The type of the element.- Parameters:
type
- The type of the element.value
- The value to be set to the current element as the specified type.- Throws:
UnsupportedOperationException
- If the element type of the data storage can't be converted to the specified type.IllegalArgumentException
- If the value is not of the specified type.IllegalStateException
- If the iterator is at the end.ApfloatRuntimeException
- Since:
- 1.7.0
-
close
Closes the iterator. This needs to be called only if the iterator is not iterated to the end.- Specified by:
close
in interfaceAutoCloseable
- Throws:
ApfloatRuntimeException
-