Record Class LavfiMtdIdet
java.lang.Object
java.lang.Record
tv.hd3g.fflauncher.filtering.lavfimtd.LavfiMtdIdet
public record LavfiMtdIdet(LavfiMtdIdetFrame single, LavfiMtdIdetFrame multiple, LavfiMtdIdetRepeatedFrame repeated)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionLavfiMtdIdet(LavfiMtdIdetFrame single, LavfiMtdIdetFrame multiple, LavfiMtdIdetRepeatedFrame repeated) Creates an instance of aLavfiMtdIdetrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.multiple()Returns the value of themultiplerecord component.repeated()Returns the value of therepeatedrecord component.single()Returns the value of thesinglerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
LavfiMtdIdet
public LavfiMtdIdet(LavfiMtdIdetFrame single, LavfiMtdIdetFrame multiple, LavfiMtdIdetRepeatedFrame repeated) Creates an instance of aLavfiMtdIdetrecord class.- Parameters:
single- the value for thesinglerecord componentmultiple- the value for themultiplerecord componentrepeated- the value for therepeatedrecord component
-
-
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). -
single
Returns the value of thesinglerecord component.- Returns:
- the value of the
singlerecord component
-
multiple
Returns the value of themultiplerecord component.- Returns:
- the value of the
multiplerecord component
-
repeated
Returns the value of therepeatedrecord component.- Returns:
- the value of the
repeatedrecord component
-