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
- Since:
- 3.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.github.miniplaceholders.api.provider.LoadRequirement
LoadRequirement.AnyOfRequirement, LoadRequirement.AvailableComplementRequirement, LoadRequirement.ClassRequirement, LoadRequirement.MultiLoadRequirement, LoadRequirement.NoneLoadRequirement, LoadRequirement.PlatformRequirement -
Constructor Summary
ConstructorsConstructorDescriptionMultiLoadRequirement(LoadRequirement... requirements) Creates an instance of aMultiLoadRequirementrecord 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.Returns the value of therequirementsrecord component.toString()Returns a string representation of this record class.
-
Constructor Details
-
MultiLoadRequirement
Creates an instance of aMultiLoadRequirementrecord class.- Parameters:
requirements- the value for therequirementsrecord 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 therequirementsrecord component.- Returns:
- the value of the
requirementsrecord component
-