Enum Class BeaterValue

java.lang.Object
java.lang.Enum<BeaterValue>
org.audiveris.proxymusic.BeaterValue
All Implemented Interfaces:
Serializable, Comparable<BeaterValue>, Constable

public enum BeaterValue extends Enum<BeaterValue>

Java class for beater-value.

The following schema fragment specifies the expected content contained within this class.

 &lt;simpleType name="beater-value">
   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
     &lt;enumeration value="bow"/>
     &lt;enumeration value="chime hammer"/>
     &lt;enumeration value="coin"/>
     &lt;enumeration value="drum stick"/>
     &lt;enumeration value="finger"/>
     &lt;enumeration value="fingernail"/>
     &lt;enumeration value="fist"/>
     &lt;enumeration value="guiro scraper"/>
     &lt;enumeration value="hammer"/>
     &lt;enumeration value="hand"/>
     &lt;enumeration value="jazz stick"/>
     &lt;enumeration value="knitting needle"/>
     &lt;enumeration value="metal hammer"/>
     &lt;enumeration value="slide brush on gong"/>
     &lt;enumeration value="snare stick"/>
     &lt;enumeration value="spoon mallet"/>
     &lt;enumeration value="superball"/>
     &lt;enumeration value="triangle beater"/>
     &lt;enumeration value="triangle beater plain"/>
     &lt;enumeration value="wire brush"/>
   &lt;/restriction>
 &lt;/simpleType>
 
  • Enum Constant Details

    • BOW

      public static final BeaterValue BOW
    • CHIME_HAMMER

      public static final BeaterValue CHIME_HAMMER
    • COIN

      public static final BeaterValue COIN
    • DRUM_STICK

      public static final BeaterValue DRUM_STICK
    • FINGER

      public static final BeaterValue FINGER
    • FINGERNAIL

      public static final BeaterValue FINGERNAIL
    • FIST

      public static final BeaterValue FIST
    • GUIRO_SCRAPER

      public static final BeaterValue GUIRO_SCRAPER
    • HAMMER

      public static final BeaterValue HAMMER
    • HAND

      public static final BeaterValue HAND
    • JAZZ_STICK

      public static final BeaterValue JAZZ_STICK
    • KNITTING_NEEDLE

      public static final BeaterValue KNITTING_NEEDLE
    • METAL_HAMMER

      public static final BeaterValue METAL_HAMMER
    • SLIDE_BRUSH_ON_GONG

      public static final BeaterValue SLIDE_BRUSH_ON_GONG
    • SNARE_STICK

      public static final BeaterValue SNARE_STICK
    • SPOON_MALLET

      public static final BeaterValue SPOON_MALLET
    • SUPERBALL

      public static final BeaterValue SUPERBALL
    • TRIANGLE_BEATER

      public static final BeaterValue TRIANGLE_BEATER
    • TRIANGLE_BEATER_PLAIN

      public static final BeaterValue TRIANGLE_BEATER_PLAIN
    • WIRE_BRUSH

      public static final BeaterValue WIRE_BRUSH
  • Method Details

    • values

      public static BeaterValue[] 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 BeaterValue 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
    • value

      public String value()
    • fromValue

      public static BeaterValue fromValue(String v)