Record Class RaiderPredicate
java.lang.Object
java.lang.Record
net.minecraft.advancements.critereon.RaiderPredicate
- All Implemented Interfaces:
EntitySubPredicate
public record RaiderPredicate(boolean hasRaid, boolean isCaptain)
extends Record
implements EntitySubPredicate
-
Field Summary
Modifier and TypeFieldDescriptionstatic final RaiderPredicate
static final com.mojang.serialization.MapCodec
<RaiderPredicate> private final boolean
The field for thehasRaid
record component.private final boolean
The field for theisCaptain
record component. -
Constructor Summary
ConstructorDescriptionRaiderPredicate
(boolean hasRaid, boolean isCaptain) Creates an instance of aRaiderPredicate
record class. -
Method Summary
Modifier and TypeMethodDescriptioncom.mojang.serialization.MapCodec
<RaiderPredicate> codec()
final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
hasRaid()
Returns the value of thehasRaid
record component.boolean
Returns the value of theisCaptain
record component.boolean
matches
(Entity p_333043_, ServerLevel p_332324_, Vec3 p_334148_) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
hasRaid
private final boolean hasRaidThe field for thehasRaid
record component. -
isCaptain
private final boolean isCaptainThe field for theisCaptain
record component. -
CODEC
-
CAPTAIN_WITHOUT_RAID
-
-
Constructor Details
-
RaiderPredicate
public RaiderPredicate(boolean hasRaid, boolean isCaptain) Creates an instance of aRaiderPredicate
record class.- Parameters:
hasRaid
- the value for thehasRaid
record componentisCaptain
- the value for theisCaptain
record component
-
-
Method Details
-
codec
- Specified by:
codec
in interfaceEntitySubPredicate
-
matches
- Specified by:
matches
in interfaceEntitySubPredicate
-
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 with '=='. -
hasRaid
public boolean hasRaid()Returns the value of thehasRaid
record component.- Returns:
- the value of the
hasRaid
record component
-
isCaptain
public boolean isCaptain()Returns the value of theisCaptain
record component.- Returns:
- the value of the
isCaptain
record component
-