Uses of Enum Class
com.irurueta.geometry.io.EndianType

  • Uses of EndianType in com.irurueta.geometry.io

    Methods in com.irurueta.geometry.io that return EndianType
    Modifier and Type
    Method
    Description
    static EndianType
    EndianType.valueOf(String name)
    Returns the enum constant of this class with the specified name.
    static EndianType[]
    EndianType.values()
    Returns an array containing the constants of this enum class, in the order they are declared.
    Methods in com.irurueta.geometry.io with parameters of type EndianType
    Modifier and Type
    Method
    Description
    (package private) static double
    Util.fromEndianType(EndianType endianType, double value)
    Converts provided value from provided endian type to machine native endian type (in Java native endian type is always big endian).
    (package private) static float
    Util.fromEndianType(EndianType endianType, float value)
    Converts provided value from provided endian type to machine native endian type (in Java native endian type is always big endian).
    (package private) static int
    Util.fromEndianType(EndianType endianType, int value)
    Converts provided value from provided endian type to machine native endian type (in Java native endian type is always big endian).
    (package private) static long
    Util.fromEndianType(EndianType endianType, long value)
    Converts provided value from provided endian type to machine native endian type (in Java native endian type is always big endian).
    (package private) static short
    Util.fromEndianType(EndianType endianType, short value)
    Converts provided value from provided endian type to machine native endian type (in Java native endian type is always big endian).
    abstract double
    AbstractFileReaderAndWriter.readDouble(EndianType endianType)
    Reads a double from this file.
    double
    FileReaderAndWriter.readDouble(EndianType endianType)
    Reads a double from this file.
    double
    MappedFileReaderAndWriter.readDouble(EndianType endianType)
    Reads a double from this file.
    abstract float
    AbstractFileReaderAndWriter.readFloat(EndianType endianType)
    Reads a float from this file.
    float
    FileReaderAndWriter.readFloat(EndianType endianType)
    Reads a float from this file.
    float
    MappedFileReaderAndWriter.readFloat(EndianType endianType)
    Reads a float from this file.
    abstract int
    AbstractFileReaderAndWriter.readInt(EndianType endianType)
    Reads a signed 32-bit integer from this file.
    int
    FileReaderAndWriter.readInt(EndianType endianType)
    Reads a signed 32-bit integer from this file.
    int
    MappedFileReaderAndWriter.readInt(EndianType endianType)
    Reads a signed 32-bit integer from this file.
    abstract long
    AbstractFileReaderAndWriter.readLong(EndianType endianType)
    Reads a signed 64-bit integer from this file.
    long
    FileReaderAndWriter.readLong(EndianType endianType)
    Reads a signed 64-bit integer from this file.
    long
    MappedFileReaderAndWriter.readLong(EndianType endianType)
    Reads a signed 64-bit integer from this file.
    abstract short
    AbstractFileReaderAndWriter.readShort(EndianType endianType)
    Reads a signed 16-bit number from this file assuming that file is encoded using provided endian type.
    short
    FileReaderAndWriter.readShort(EndianType endianType)
    Reads a signed 16-bit number from this file assuming that file is encoded using provided endian type.
    short
    MappedFileReaderAndWriter.readShort(EndianType endianType)
    Reads a signed 16-bit number from this file assuming that file is encoded using provided endian type.
    abstract long
    AbstractFileReaderAndWriter.readUnsignedInt(EndianType endianType)
    Reads an unsigned 32-bit integer from this file.
    long
    FileReaderAndWriter.readUnsignedInt(EndianType endianType)
    Reads an unsigned 32-bit integer from this file.
    long
    MappedFileReaderAndWriter.readUnsignedInt(EndianType endianType)
    Reads an unsigned 32-bit integer from this file.
    abstract int
    AbstractFileReaderAndWriter.readUnsignedShort(EndianType endianType)
    Reads an unsigned 16-bit number from this file.
    int
    FileReaderAndWriter.readUnsignedShort(EndianType endianType)
    Reads an unsigned 16-bit number from this file.
    int
    MappedFileReaderAndWriter.readUnsignedShort(EndianType endianType)
    Reads an unsigned 16-bit number from this file.
    (package private) static double
    Util.toEndianType(EndianType endianType, double value)
    Converts provided value to provided endian type.
    (package private) static float
    Util.toEndianType(EndianType endianType, float value)
    Converts provided value to provided endian type.
    (package private) static int
    Util.toEndianType(EndianType endianType, int value)
    Converts provided value to provided endian type.
    (package private) static long
    Util.toEndianType(EndianType endianType, long value)
    Converts provided value to provided endian type.
    (package private) static short
    Util.toEndianType(EndianType endianType, short value)
    Converts provided value to provided endian type.
    abstract void
    AbstractFileReaderAndWriter.writeDouble(double v, EndianType endianType)
    Converts the double argument to a long using the doubleToLongBits method in class Double, and then writes that long value to the file as an eight byte quantity, using provided endian type.
    void
    FileReaderAndWriter.writeDouble(double v, EndianType endianType)
    Converts the double argument to a long using the doubleToLongBits method in class Double, and then writes that long value to the file as an eight byte quantity, using provided endian type.
    void
    MappedFileReaderAndWriter.writeDouble(double v, EndianType endianType)
    Converts the double argument to a long using the doubleToLongBits method in class Double, and then writes that long value to the file as an eight byte quantity, using provided endian type.
    abstract void
    AbstractFileReaderAndWriter.writeFloat(float v, EndianType endianType)
    Converts the float argument to an int using the floatToIntBits method in class Float, and then write that int value to the file as a four-byte quantity, using provided endian type.
    void
    FileReaderAndWriter.writeFloat(float v, EndianType endianType)
    Converts the float argument to an int using the floatToIntBits method in class Float, and then write that int value to the file as a four-byte quantity, using provided endian type.
    void
    MappedFileReaderAndWriter.writeFloat(float v, EndianType endianType)
    Converts the float argument to an int using the floatToIntBits method in class Float, and then write that int value to the file as a four-byte quantity, using provided endian type.
    abstract void
    AbstractFileReaderAndWriter.writeInt(int v, EndianType endianType)
    Writes an int to the file as four bytes, using provided endian type.
    void
    FileReaderAndWriter.writeInt(int v, EndianType endianType)
    Writes an int to the file as four bytes, using provided endian type.
    void
    MappedFileReaderAndWriter.writeInt(int v, EndianType endianType)
    Writes an int to the file as four bytes, using provided endian type.
    abstract void
    AbstractFileReaderAndWriter.writeLong(long v, EndianType endianType)
    Writes a long to the file as eight bytes, using provided endian type.
    void
    FileReaderAndWriter.writeLong(long v, EndianType endianType)
    Writes a long to the file as eight bytes, using provided endian type.
    void
    MappedFileReaderAndWriter.writeLong(long v, EndianType endianType)
    Writes a long to the file as eight bytes, using provided endian type.
    abstract void
    AbstractFileReaderAndWriter.writeShort(short v, EndianType endianType)
    Writes a short to the file as two bytes using provided endian type.
    void
    FileReaderAndWriter.writeShort(short v, EndianType endianType)
    Writes a short to the file as two bytes using provided endian type.
    void
    MappedFileReaderAndWriter.writeShort(short v, EndianType endianType)
    Writes a short to the file as two bytes using provided endian type.
    abstract void
    AbstractFileReaderAndWriter.writeUnsignedInt(long v, EndianType endianType)
    Writes an unsigned int to the file as four bytes, using provided endian type.
    void
    FileReaderAndWriter.writeUnsignedInt(long v, EndianType endianType)
    Writes an unsigned int to the file as four bytes, using provided endian type.
    void
    MappedFileReaderAndWriter.writeUnsignedInt(long v, EndianType endianType)
    Writes an unsigned int to the file as four bytes, using provided endian type.
    abstract void
    AbstractFileReaderAndWriter.writeUnsignedShort(int v, EndianType endianType)
    Writes an unsigned short to the file as two bytes, using provided endian type.
    void
    FileReaderAndWriter.writeUnsignedShort(int v, EndianType endianType)
    Writes an unsigned short to the file as two bytes, using provided endian type.
    void
    MappedFileReaderAndWriter.writeUnsignedShort(int v, EndianType endianType)
    Writes an unsigned short to the file as two bytes, using provided endian type.