Class IntArrayLongArrayConverter
java.lang.Object
com.saperion.common.lang.conversion.array.IntArrayLongArrayConverter
- All Implemented Interfaces:
Converter<int[],
long[]>
Converts int[] to long[]
- Author:
- jschwarz
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionlong[]
convert
(int[] integers) Converts the specified object and returns the conversion result.
-
Constructor Details
-
IntArrayLongArrayConverter
public IntArrayLongArrayConverter()
-
-
Method Details
-
convert
public long[] convert(int[] integers) Description copied from interface:Converter
Converts the specified object and returns the conversion result. Implementations have to acceptnull
-values without throwing exceptions.
-