Package com.io7m.calino.api
Record Class CLNImage2DMipMapDeclaration
java.lang.Object
java.lang.Record
com.io7m.calino.api.CLNImage2DMipMapDeclaration
- Record Components:
mipMapLevel
- The mipmap levelsizeCompressed
- The size of the supercompressed data in octetssizeUncompressed
- The size of the uncompressed data in octetscrc32
- The CRC32 checksum of the uncompressed data
- All Implemented Interfaces:
Comparable<CLNImage2DMipMapDeclaration>
public record CLNImage2DMipMapDeclaration(int mipMapLevel, long sizeCompressed, long sizeUncompressed, int crc32)
extends Record
implements Comparable<CLNImage2DMipMapDeclaration>
The declaration of a single mipmap.
-
Constructor Summary
ConstructorDescriptionCLNImage2DMipMapDeclaration
(int mipMapLevel, long sizeCompressed, long sizeUncompressed, int crc32) Creates an instance of aCLNImage2DMipMapDeclaration
record class. -
Method Summary
Modifier and TypeMethodDescriptionint
int
crc32()
Returns the value of thecrc32
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
Returns the value of themipMapLevel
record component.long
Returns the value of thesizeCompressed
record component.long
Returns the value of thesizeUncompressed
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
CLNImage2DMipMapDeclaration
public CLNImage2DMipMapDeclaration(int mipMapLevel, long sizeCompressed, long sizeUncompressed, int crc32) Creates an instance of aCLNImage2DMipMapDeclaration
record class.- Parameters:
mipMapLevel
- the value for themipMapLevel
record componentsizeCompressed
- the value for thesizeCompressed
record componentsizeUncompressed
- the value for thesizeUncompressed
record componentcrc32
- the value for thecrc32
record component
-
-
Method Details
-
compareTo
- Specified by:
compareTo
in interfaceComparable<CLNImage2DMipMapDeclaration>
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with '=='. -
mipMapLevel
public int mipMapLevel()Returns the value of themipMapLevel
record component.- Returns:
- the value of the
mipMapLevel
record component
-
sizeCompressed
public long sizeCompressed()Returns the value of thesizeCompressed
record component.- Returns:
- the value of the
sizeCompressed
record component
-
sizeUncompressed
public long sizeUncompressed()Returns the value of thesizeUncompressed
record component.- Returns:
- the value of the
sizeUncompressed
record component
-
crc32
public int crc32()Returns the value of thecrc32
record component.- Returns:
- the value of the
crc32
record component
-