Package emi.dev.emi.emi.data
Record Class IndexStackData
java.lang.Object
java.lang.Record
emi.dev.emi.emi.data.IndexStackData
public record IndexStackData(boolean disable, List<IndexStackData.Added> added, List<EmiIngredient> removed, List<IndexStackData.Filter> filters)
extends Record
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final recordstatic final record -
Constructor Summary
ConstructorsConstructorDescriptionIndexStackData(boolean disable, List<IndexStackData.Added> added, List<EmiIngredient> removed, List<IndexStackData.Filter> filters) Creates an instance of aIndexStackDatarecord class. -
Method Summary
Modifier and TypeMethodDescriptionadded()Returns the value of theaddedrecord component.booleandisable()Returns the value of thedisablerecord component.final booleanIndicates whether some other object is "equal to" this one.filters()Returns the value of thefiltersrecord component.final inthashCode()Returns a hash code value for this object.removed()Returns the value of theremovedrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
IndexStackData
public IndexStackData(boolean disable, List<IndexStackData.Added> added, List<EmiIngredient> removed, List<IndexStackData.Filter> filters) Creates an instance of aIndexStackDatarecord class.- Parameters:
disable- the value for thedisablerecord componentadded- the value for theaddedrecord componentremoved- the value for theremovedrecord componentfilters- the value for thefiltersrecord 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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
disable
public boolean disable()Returns the value of thedisablerecord component.- Returns:
- the value of the
disablerecord component
-
added
Returns the value of theaddedrecord component.- Returns:
- the value of the
addedrecord component
-
removed
Returns the value of theremovedrecord component.- Returns:
- the value of the
removedrecord component
-
filters
Returns the value of thefiltersrecord component.- Returns:
- the value of the
filtersrecord component
-