Package com.io7m.calino.api
Record Class CLNChannelsLayoutDescriptionCustom
java.lang.Object
java.lang.Record
com.io7m.calino.api.CLNChannelsLayoutDescriptionCustom
- Record Components:
channels
- The channelspacking
- The packing specification
- All Implemented Interfaces:
CLNChannelsLayoutDescriptionType
,CLNDescribableType
public record CLNChannelsLayoutDescriptionCustom(List<CLNChannelDescription> channels, Optional<CLNChannelLayoutPacking> packing)
extends Record
implements CLNChannelsLayoutDescriptionType
A custom channel layout description.
-
Constructor Summary
ConstructorDescriptionCLNChannelsLayoutDescriptionCustom
(List<CLNChannelDescription> channels, Optional<CLNChannelLayoutPacking> packing) A custom channel layout description. -
Method Summary
Modifier and TypeMethodDescriptionchannels()
Returns the value of thechannels
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.packing()
Returns the value of thepacking
record component.final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.io7m.calino.api.CLNChannelsLayoutDescriptionType
bitsTotal, descriptor, texelBlockAlignment
-
Constructor Details
-
CLNChannelsLayoutDescriptionCustom
public CLNChannelsLayoutDescriptionCustom(List<CLNChannelDescription> channels, Optional<CLNChannelLayoutPacking> packing) A custom channel layout description.- Parameters:
channels
- The channelspacking
- The packing specification
-
-
Method Details
-
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 withObjects::equals(Object,Object)
. -
channels
Returns the value of thechannels
record component.- Specified by:
channels
in interfaceCLNChannelsLayoutDescriptionType
- Returns:
- the value of the
channels
record component
-
packing
Returns the value of thepacking
record component.- Specified by:
packing
in interfaceCLNChannelsLayoutDescriptionType
- Returns:
- the value of the
packing
record component
-