Interface ISimpleIterableMapper
- All Known Implementing Classes:
SimpleIterableMapper
public interface ISimpleIterableMapper
A
ISimpleIterableMapper provides functions to handle arrays.- Author:
- Silvan Wyss
-
Method Summary
Modifier and TypeMethodDescriptiontoIterable(byte[] bytes) toIterable(double[] values) toIterable(int[] values) toIterable(long[] values) <E> Iterable<E> toIterable(E[] elements)
-
Method Details
-
toIterable
- Parameters:
bytes-- Returns:
- a new
Iterablewith the given bytes - Throws:
RuntimeException- if the given bytes is null
-
toIterable
- Parameters:
values-- Returns:
- a new
Iterablewith the given values - Throws:
RuntimeException- if the given values is null
-
toIterable
- Type Parameters:
E- the type of the given elements- Parameters:
elements-- Returns:
- a new
Iterablewith the given elements - Throws:
RuntimeException- if the given elements is null
-
toIterable
- Parameters:
values-- Returns:
- a new
Iterablewith the given values - Throws:
RuntimeException- if the given values is null
-
toIterable
- Parameters:
values-- Returns:
- a new
Iterablewith the given values - Throws:
RuntimeException- if the given values is null
-