Package net.minecraft.predicate.entity
Record Class RaiderPredicate
java.lang.Object
java.lang.Record
net.minecraft.predicate.entity.RaiderPredicate
- Record Components:
- hasRaid-
- isCaptain-
- All Implemented Interfaces:
- EntitySubPredicate
public record RaiderPredicate(boolean hasRaid, boolean isCaptain)
extends Record
implements EntitySubPredicate
- Mappings:
- Namespace - Name - named - net/minecraft/predicate/entity/RaiderPredicate- intermediary - net/minecraft/class_9471- official - du- named - hasRaid- intermediary - comp_2549- official - d- named - isCaptain- intermediary - comp_2550- official - e
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final RaiderPredicatestatic final com.mojang.serialization.MapCodec<RaiderPredicate> private final booleanThe field for thehasRaidrecord component.private final booleanThe field for theisCaptainrecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.com.mojang.serialization.MapCodec<RaiderPredicate> getCodec()final inthashCode()Returns a hash code value for this object.booleanhasRaid()Returns the value of thehasRaidrecord component.booleanReturns the value of theisCaptainrecord component.booleantest(Entity entity, ServerWorld world, @Nullable Vec3d pos) final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
hasRaidprivate final boolean hasRaidThe field for thehasRaidrecord component.
- 
isCaptainprivate final boolean isCaptainThe field for theisCaptainrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/predicate/entity/RaiderPredicate;CODEC:Lcom/mojang/serialization/MapCodec;- intermediary - field_50162- Lnet/minecraft/class_9471;field_50162:Lcom/mojang/serialization/MapCodec;- official - b- Ldu;b:Lcom/mojang/serialization/MapCodec;
 
- 
CAPTAIN_WITHOUT_RAID- Mappings:
- Namespace - Name - Mixin selector - named - CAPTAIN_WITHOUT_RAID- Lnet/minecraft/predicate/entity/RaiderPredicate;CAPTAIN_WITHOUT_RAID:Lnet/minecraft/predicate/entity/RaiderPredicate;- intermediary - field_50163- Lnet/minecraft/class_9471;field_50163:Lnet/minecraft/class_9471;- official - c- Ldu;c:Ldu;
 
 
- 
- 
Constructor Details- 
RaiderPredicatepublic RaiderPredicate(boolean bool, boolean bool2) 
 
- 
- 
Method Details- 
getCodec- Specified by:
- getCodecin interface- EntitySubPredicate
- Mappings:
- Namespace - Name - Mixin selector - named - getCodec- Lnet/minecraft/predicate/entity/EntitySubPredicate;getCodec()Lcom/mojang/serialization/MapCodec;- intermediary - method_58152- Lnet/minecraft/class_7376;method_58152()Lcom/mojang/serialization/MapCodec;- official - a- Lby;a()Lcom/mojang/serialization/MapCodec;
 
- 
test- Specified by:
- testin interface- EntitySubPredicate
- Mappings:
- Namespace - Name - Mixin selector - named - test- Lnet/minecraft/predicate/entity/EntitySubPredicate;test(Lnet/minecraft/entity/Entity;Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/util/math/Vec3d;)Z- intermediary - method_22497- Lnet/minecraft/class_7376;method_22497(Lnet/minecraft/class_1297;Lnet/minecraft/class_3218;Lnet/minecraft/class_243;)Z- official - a- Lby;a(Lbum;Lard;Lfbb;)Z
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 '=='.
- 
hasRaidpublic boolean hasRaid()Returns the value of thehasRaidrecord component.- Returns:
- the value of the hasRaidrecord component
 
- 
isCaptainpublic boolean isCaptain()Returns the value of theisCaptainrecord component.- Returns:
- the value of the isCaptainrecord component
 
 
-