Package com.itextpdf.kernel.pdf.function
Interface BaseInputOutPutConvertors.IInputConversionFunction
- Enclosing class:
- BaseInputOutPutConvertors
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A functional interface for providing conversion of raw input to an array of double values.
-
Method Summary
Modifier and TypeMethodDescriptiondouble[]
convert
(byte[] input, int offset, int length) A method that converts a raw byte array to an array of double values.
-
Method Details
-
convert
double[] convert(byte[] input, int offset, int length) A method that converts a raw byte array to an array of double values.- Parameters:
-
input
- the raw data -
offset
- where to start processing -
length
- how many bytes to process - Returns:
- an array of double values
-