io.daten.faster.PlatformUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of faster-core Show documentation
Show all versions of faster-core Show documentation
Faster alternatives to common JDK classes.
The newest version!
package io.daten.faster;
import java.nio.ByteOrder;
public final class PlatformUtil {
public static final boolean IS_LITTLE_ENDIAN =
ByteOrder.nativeOrder().equals(ByteOrder.LITTLE_ENDIAN);
}