Record Class LoadRequirement.MultiLoadRequirement
java.lang.Object
java.lang.Record
io.github.miniplaceholders.api.provider.LoadRequirement.MultiLoadRequirement
- Record Components:
requirements
- the load requirements
- All Implemented Interfaces:
LoadRequirement
- Enclosing interface:
LoadRequirement
@Internal
@NullMarked
public static record LoadRequirement.MultiLoadRequirement(LoadRequirement[] requirements)
extends Record
implements LoadRequirement
MultiLoadRequirement
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.github.miniplaceholders.api.provider.LoadRequirement
LoadRequirement.AvailableComplementRequirement, LoadRequirement.MultiLoadRequirement, LoadRequirement.NoneLoadRequirement, LoadRequirement.PlatformRequirement
-
Constructor Summary
ConstructorsConstructorDescriptionMultiLoadRequirement
(LoadRequirement... requirements) Creates an instance of aMultiLoadRequirement
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of therequirements
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
MultiLoadRequirement
Creates an instance of aMultiLoadRequirement
record class.- Parameters:
requirements
- the value for therequirements
record 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)
. -
requirements
Returns the value of therequirements
record component.- Returns:
- the value of the
requirements
record component
-