java.lang.Object
java.lang.Enum<Rotation>
cn.nukkit.level.generator.populator.impl.structure.utils.math.Rotation
All Implemented Interfaces:
Serializable, Comparable<Rotation>, Constable

@PowerNukkitXOnly @Since("1.19.21-r2") public enum Rotation extends Enum<Rotation>
  • Enum Constant Details

    • NONE

      public static final Rotation NONE
    • CLOCKWISE_90

      public static final Rotation CLOCKWISE_90
    • CLOCKWISE_180

      public static final Rotation CLOCKWISE_180
    • COUNTERCLOCKWISE_90

      public static final Rotation COUNTERCLOCKWISE_90
  • Method Details

    • values

      public static Rotation[] values()
      Returns 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
    • valueOf

      public static Rotation valueOf(String name)
      Returns 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
    • clockwise90

      public static int clockwise90(int id, int meta)
      Rotate a block's data value 90 degrees (north->east->south->west->north);
      Parameters:
      id - the ID of the bock
      meta - the meta of the block
      Returns:
      the new meta
    • counterclockwise90

      public static int counterclockwise90(int id, int meta)
      Rotate a block's data value -90 degrees (north<-east<-south<-west<-north);
      Parameters:
      id - the ID of the bock
      meta - the meta of the block
      Returns:
      the new meta
    • clockwise180

      public static int clockwise180(int id, int meta)
      Flip a block's data value.
      Parameters:
      id - the ID of the bock
      meta - the meta of the block
      Returns:
      the new meta