![JAR search and dependency download from the Maven repository](/logo.png)
fr.figarocms.flume.formatter.mapping.converter.IntegerConverter Maven / Gradle / Ivy
package fr.figarocms.flume.formatter.mapping.converter;
import java.nio.ByteBuffer;
public class IntegerConverter implements Converter {
@Override
public Integer convert(byte[] source) {
if (source == null) {
return null;
}
ByteBuffer buffer = ByteBuffer.wrap(source);
return buffer.getInt();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy