Uses of Enum Class
org.refcodes.numerical.Endianess

  • Uses of Endianess in org.refcodes.numerical

    Fields in org.refcodes.numerical declared as Endianess
    Modifier and Type
    Field
    Description
    protected Endianess
    AbstractCrcMixin._endianess
     
    Methods in org.refcodes.numerical that return Endianess
    Modifier and Type
    Method
    Description
    AbstractCrcMixin.getEndianess()
    Retrieves the value from the Endianess property.
    EndianessAccessor.getEndianess()
    Retrieves the value from the Endianess property.
    default Endianess
    EndianessAccessor.EndianessProperty.letEndianess(Endianess aEndianess)
    This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given Endianess (setter) as of EndianessAccessor.EndianessMutator.setEndianess(Endianess) and returns the very same value (getter).
    static Endianess
    Endianess.valueOf(String name)
    Returns the enum constant of this class with the specified name.
    static Endianess[]
    Endianess.values()
    Returns an array containing the constants of this enum class, in the order they are declared.
    Methods in org.refcodes.numerical with parameters of type Endianess
    Modifier and Type
    Method
    Description
    default Endianess
    EndianessAccessor.EndianessProperty.letEndianess(Endianess aEndianess)
    This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given Endianess (setter) as of EndianessAccessor.EndianessMutator.setEndianess(Endianess) and returns the very same value (getter).
    void
    EndianessAccessor.EndianessMutator.setEndianess(Endianess aEndianess)
    Sets the value for the Endianess property.
    byte[]
    CrcAlgorithm.toCrcBytes(byte[] aData, int aOffset, int aLength, Endianess aEndianess)
    Calculates the according checksum from the supplied data data and returns the according byte array of the CRC checksum.
    byte[]
    CrcAlgorithm.toCrcBytes(byte[] aData, Endianess aEndianess)
    Calculates the according checksum from the supplied data data and returns the according byte array of the CRC checksum.
    byte[]
    CrcAlgorithm.toCrcBytes(byte aData, Endianess aEndianess)
    Calculates the according checksum from the supplied data and returns the according byte array of the CRC checksum.
    byte[]
    CrcAlgorithm.toCrcBytes(long aCrc, byte[] aData, int aOffset, int aLength, Endianess aEndianess)
    Updates the according checksum with he supplied data data and returns the according byte array of the CRC checksum.
    byte[]
    CrcAlgorithm.toCrcBytes(long aCrc, byte[] aData, Endianess aEndianess)
    Updates the according checksum with he supplied data data and returns the according byte array of the CRC checksum.
    byte[]
    CrcAlgorithm.toCrcBytes(long aCrc, byte aData, Endianess aEndianess)
    Updates the according checksum with he supplied data data and returns the according byte array of the CRC checksum.
    byte[]
    CrcAlgorithmImpl.toCrcBytes(byte[] aData, int aOffset, int aLength, Endianess aEndianess)
    Calculates the according checksum from the supplied data data and returns the according byte array of the CRC checksum.
    byte[]
    CrcAlgorithmImpl.toCrcBytes(byte[] aData, Endianess aEndianess)
    Calculates the according checksum from the supplied data data and returns the according byte array of the CRC checksum.
    byte[]
    CrcAlgorithmImpl.toCrcBytes(byte aData, Endianess aEndianess)
    Calculates the according checksum from the supplied data and returns the according byte array of the CRC checksum.
    byte[]
    CrcAlgorithmImpl.toCrcBytes(long aCrc, byte[] aData, int aOffset, int aLength, Endianess aEndianess)
    Updates the according checksum with he supplied data data and returns the according byte array of the CRC checksum.
    byte[]
    CrcAlgorithmImpl.toCrcBytes(long aCrc, byte[] aData, Endianess aEndianess)
    Updates the according checksum with he supplied data data and returns the according byte array of the CRC checksum.
    byte[]
    CrcAlgorithmImpl.toCrcBytes(long aCrc, byte aData, Endianess aEndianess)
    Updates the according checksum with he supplied data data and returns the according byte array of the CRC checksum.
    byte[]
    CrcStandard.toCrcBytes(byte[] aData, int aOffset, int aLength, Endianess aEndianess)
    Calculates the according checksum from the supplied data data and returns the according byte array of the CRC checksum.
    byte[]
    CrcStandard.toCrcBytes(byte[] aData, Endianess aEndianess)
    Calculates the according checksum from the supplied data data and returns the according byte array of the CRC checksum.
    byte[]
    CrcStandard.toCrcBytes(byte aData, Endianess aEndianess)
    Calculates the according checksum from the supplied data and returns the according byte array of the CRC checksum.
    byte[]
    CrcStandard.toCrcBytes(long aCrc, byte[] aData, int aOffset, int aLength, Endianess aEndianess)
    Updates the according checksum with he supplied data data and returns the according byte array of the CRC checksum.
    byte[]
    CrcStandard.toCrcBytes(long aCrc, byte[] aData, Endianess aEndianess)
    Updates the according checksum with he supplied data data and returns the according byte array of the CRC checksum.
    byte[]
    CrcStandard.toCrcBytes(long aCrc, byte aData, Endianess aEndianess)
    Updates the according checksum with he supplied data data and returns the according byte array of the CRC checksum.
    EndianessAccessor.EndianessBuilder.withEndianess(Endianess aEndianess)
    Sets the value for the Endianess property.
    Constructors in org.refcodes.numerical with parameters of type Endianess
    Modifier
    Constructor
    Description
     
    AbstractCrcMixin(CrcAlgorithm aCrcAlgorithm, org.refcodes.mixin.ConcatenateMode aCrcChecksumConcatenateMode, ChecksumValidationMode aChecksumValidationMode, Endianess aEndianess)
    Constructs an according instance from the given arguments.