Enum Class NoteBlockEvent.Octave

java.lang.Object
java.lang.Enum<NoteBlockEvent.Octave>
net.minecraftforge.event.world.NoteBlockEvent.Octave
All Implemented Interfaces:
Serializable, Comparable<NoteBlockEvent.Octave>, Constable
Enclosing class:
NoteBlockEvent

public static enum NoteBlockEvent.Octave extends Enum<NoteBlockEvent.Octave>
Describes the Octave of a Note being played by a Noteblock. Together with NoteBlockEvent.Note it fully describes the note.
  • Enum Constant Details

  • Constructor Details

    • Octave

      private Octave()
  • Method Details

    • values

      public static NoteBlockEvent.Octave[] 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 NoteBlockEvent.Octave 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
    • fromId

      static NoteBlockEvent.Octave fromId(int id)