Class IntProperty

java.lang.Object
net.minecraft.state.property.Property<Integer>
net.minecraft.state.property.IntProperty

public class IntProperty extends Property<Integer>
Represents a property that has integer values.

See Properties for example usages.

Mappings:
Namespace Name
official czt
intermediary net/minecraft/class_2758
named net/minecraft/state/property/IntProperty
  • Field Details

    • values

      private final ImmutableSet<Integer> values
      Mappings:
      Namespace Name Mixin selector
      official a Lczt;a:Lcom/google/common/collect/ImmutableSet;
      intermediary field_12614 Lnet/minecraft/class_2758;field_12614:Lcom/google/common/collect/ImmutableSet;
      named values Lnet/minecraft/state/property/IntProperty;values:Lcom/google/common/collect/ImmutableSet;
    • field_37655

      private final int field_37655
      Mappings:
      Namespace Name Mixin selector
      official b Lczt;b:I
      intermediary field_37655 Lnet/minecraft/class_2758;field_37655:I
      named field_37655 Lnet/minecraft/state/property/IntProperty;field_37655:I
    • field_37656

      private final int field_37656
      Mappings:
      Namespace Name Mixin selector
      official c Lczt;c:I
      intermediary field_37656 Lnet/minecraft/class_2758;field_37656:I
      named field_37656 Lnet/minecraft/state/property/IntProperty;field_37656:I
  • Constructor Details

    • IntProperty

      protected IntProperty(String name, int min, int max)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lczt;<init>(Ljava/lang/String;II)V
      intermediary <init> Lnet/minecraft/class_2758;<init>(Ljava/lang/String;II)V
      named <init> Lnet/minecraft/state/property/IntProperty;<init>(Ljava/lang/String;II)V
  • Method Details

    • getValues

      public Collection<Integer> getValues()
      Returns all possible values of this property.
      Specified by:
      getValues in class Property<Integer>
      Mappings:
      Namespace Name Mixin selector
      official a Lczw;a()Ljava/util/Collection;
      intermediary method_11898 Lnet/minecraft/class_2769;method_11898()Ljava/util/Collection;
      named getValues Lnet/minecraft/state/property/Property;getValues()Ljava/util/Collection;
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Property<Integer>
      Mappings:
      Namespace Name Mixin selector
      official equals Lczw;equals(Ljava/lang/Object;)Z
      intermediary equals Lnet/minecraft/class_2769;equals(Ljava/lang/Object;)Z
      named equals Lnet/minecraft/state/property/Property;equals(Ljava/lang/Object;)Z
    • computeHashCode

      public int computeHashCode()
      Overrides:
      computeHashCode in class Property<Integer>
      Mappings:
      Namespace Name Mixin selector
      official b Lczw;b()I
      intermediary method_11799 Lnet/minecraft/class_2769;method_11799()I
      named computeHashCode Lnet/minecraft/state/property/Property;computeHashCode()I
    • of

      public static IntProperty of(String name, int min, int max)
      Creates an integer property.

      Note that this method computes all possible values.

      Parameters:
      name - the name of the property; see the note on the name
      min - the minimum value the property contains
      max - the maximum value the property contains
      Throws:
      IllegalArgumentException - if 0 <= min < max is not satisfied
      Mappings:
      Namespace Name Mixin selector
      official a Lczt;a(Ljava/lang/String;II)Lczt;
      intermediary method_11867 Lnet/minecraft/class_2758;method_11867(Ljava/lang/String;II)Lnet/minecraft/class_2758;
      named of Lnet/minecraft/state/property/IntProperty;of(Ljava/lang/String;II)Lnet/minecraft/state/property/IntProperty;
    • parse

      public Optional<Integer> parse(String name)
      Specified by:
      parse in class Property<Integer>
      Mappings:
      Namespace Name Mixin selector
      official b Lczw;b(Ljava/lang/String;)Ljava/util/Optional;
      intermediary method_11900 Lnet/minecraft/class_2769;method_11900(Ljava/lang/String;)Ljava/util/Optional;
      named parse Lnet/minecraft/state/property/Property;parse(Ljava/lang/String;)Ljava/util/Optional;
    • name

      public String name(Integer integer)
      Description copied from class: Property
      Returns the name of the given value of this property.
      Specified by:
      name in class Property<Integer>
      Mappings:
      Namespace Name Mixin selector
      official a Lczt;a(Ljava/lang/Integer;)Ljava/lang/String;
      intermediary method_11868 Lnet/minecraft/class_2758;method_11868(Ljava/lang/Integer;)Ljava/lang/String;
      named name Lnet/minecraft/state/property/IntProperty;name(Ljava/lang/Integer;)Ljava/lang/String;