Package net.minecraft.entity.attribute
Enum Class EntityAttributeModifier.Operation
java.lang.Object
java.lang.Enum<EntityAttributeModifier.Operation>
net.minecraft.entity.attribute.EntityAttributeModifier.Operation
- All Implemented Interfaces:
- Serializable,- Comparable<EntityAttributeModifier.Operation>,- Constable
- Enclosing class:
- EntityAttributeModifier
public static enum EntityAttributeModifier.Operation
extends Enum<EntityAttributeModifier.Operation>
Represents an operation which can be applied to an attribute modifier.
- Mappings:
- Namespace - Name - official - bhe$a- intermediary - net/minecraft/class_1322$class_1323- named - net/minecraft/entity/attribute/EntityAttributeModifier$Operation
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionAdds to the base value of an attribute.Multiplies the base value of the attribute.Multiplies the total value of the attribute.
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final intprivate static final EntityAttributeModifier.Operation[]
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfromId(int id) intgetId()Returns the enum constant of this class with the specified name.static EntityAttributeModifier.Operation[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
ADDITIONAdds to the base value of an attribute.- Mappings:
- Namespace - Name - Mixin selector - official - a- Lbhe$a;a:Lbhe$a;- intermediary - field_6328- Lnet/minecraft/class_1322$class_1323;field_6328:Lnet/minecraft/class_1322$class_1323;- named - ADDITION- Lnet/minecraft/entity/attribute/EntityAttributeModifier$Operation;ADDITION:Lnet/minecraft/entity/attribute/EntityAttributeModifier$Operation;
 
- 
MULTIPLY_BASEMultiplies the base value of the attribute.Is applied after addition. - Mappings:
- Namespace - Name - Mixin selector - official - b- Lbhe$a;b:Lbhe$a;- intermediary - field_6330- Lnet/minecraft/class_1322$class_1323;field_6330:Lnet/minecraft/class_1322$class_1323;- named - MULTIPLY_BASE- Lnet/minecraft/entity/attribute/EntityAttributeModifier$Operation;MULTIPLY_BASE:Lnet/minecraft/entity/attribute/EntityAttributeModifier$Operation;
 
- 
MULTIPLY_TOTALMultiplies the total value of the attribute.The total value is equal to the sum of all additions and base multiplications applied by an attribute modifier. - Mappings:
- Namespace - Name - Mixin selector - official - c- Lbhe$a;c:Lbhe$a;- intermediary - field_6331- Lnet/minecraft/class_1322$class_1323;field_6331:Lnet/minecraft/class_1322$class_1323;- named - MULTIPLY_TOTAL- Lnet/minecraft/entity/attribute/EntityAttributeModifier$Operation;MULTIPLY_TOTAL:Lnet/minecraft/entity/attribute/EntityAttributeModifier$Operation;
 
 
- 
- 
Field Details- 
VALUES- Mappings:
- Namespace - Name - Mixin selector - official - d- Lbhe$a;d:[Lbhe$a;- intermediary - field_6332- Lnet/minecraft/class_1322$class_1323;field_6332:[Lnet/minecraft/class_1322$class_1323;- named - VALUES- Lnet/minecraft/entity/attribute/EntityAttributeModifier$Operation;VALUES:[Lnet/minecraft/entity/attribute/EntityAttributeModifier$Operation;
 
- 
idprivate final int id- Mappings:
- Namespace - Name - Mixin selector - official - e- Lbhe$a;e:I- intermediary - field_6329- Lnet/minecraft/class_1322$class_1323;field_6329:I- named - id- Lnet/minecraft/entity/attribute/EntityAttributeModifier$Operation;id:I
 
 
- 
- 
Constructor Details- 
Operationprivate Operation(int id) - Mappings:
- Namespace - Name - Mixin selector - official - <init>- Lbhe$a;<init>(Ljava/lang/String;II)V- intermediary - <init>- Lnet/minecraft/class_1322$class_1323;<init>(Ljava/lang/String;II)V- named - <init>- Lnet/minecraft/entity/attribute/EntityAttributeModifier$Operation;<init>(Ljava/lang/String;II)V
 
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum class has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
getIdpublic int getId()- Mappings:
- Namespace - Name - Mixin selector - official - a- Lbhe$a;a()I- intermediary - method_6191- Lnet/minecraft/class_1322$class_1323;method_6191()I- named - getId- Lnet/minecraft/entity/attribute/EntityAttributeModifier$Operation;getId()I
 
- 
fromId- Mappings:
- Namespace - Name - Mixin selector - official - a- Lbhe$a;a(I)Lbhe$a;- intermediary - method_6190- Lnet/minecraft/class_1322$class_1323;method_6190(I)Lnet/minecraft/class_1322$class_1323;- named - fromId- Lnet/minecraft/entity/attribute/EntityAttributeModifier$Operation;fromId(I)Lnet/minecraft/entity/attribute/EntityAttributeModifier$Operation;
 
 
-