package nl.tudelft.simulation.dsol.animation.gis.io; /** * Endianness of the data; either big endian (Java, network), or little endian (Intel). *
* Copyright (c) 2020-2022 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See * for project information DSOL Manual. The DSOL * project is distributed under a three-clause BSD-style license, which can be found at * DSOL License. *
* @author Alexander Verbraeck */ public enum Endianness { /** BIG ENDIAN. Aka network byte order. MSB first. */ BIG_ENDIAN, /** LITTLE ENDIAN. Default in the Intel processors. LSB first. */ LITTLE_ENDIAN; }