Enum Class MetalValue

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

public enum MetalValue extends Enum<MetalValue>

Java class for metal-value.

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

 &lt;simpleType name="metal-value">
   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
     &lt;enumeration value="agogo"/>
     &lt;enumeration value="almglocken"/>
     &lt;enumeration value="bell"/>
     &lt;enumeration value="bell plate"/>
     &lt;enumeration value="bell tree"/>
     &lt;enumeration value="brake drum"/>
     &lt;enumeration value="cencerro"/>
     &lt;enumeration value="chain rattle"/>
     &lt;enumeration value="Chinese cymbal"/>
     &lt;enumeration value="cowbell"/>
     &lt;enumeration value="crash cymbals"/>
     &lt;enumeration value="crotale"/>
     &lt;enumeration value="cymbal tongs"/>
     &lt;enumeration value="domed gong"/>
     &lt;enumeration value="finger cymbals"/>
     &lt;enumeration value="flexatone"/>
     &lt;enumeration value="gong"/>
     &lt;enumeration value="hi-hat"/>
     &lt;enumeration value="high-hat cymbals"/>
     &lt;enumeration value="handbell"/>
     &lt;enumeration value="jaw harp"/>
     &lt;enumeration value="jingle bells"/>
     &lt;enumeration value="musical saw"/>
     &lt;enumeration value="shell bells"/>
     &lt;enumeration value="sistrum"/>
     &lt;enumeration value="sizzle cymbal"/>
     &lt;enumeration value="sleigh bells"/>
     &lt;enumeration value="suspended cymbal"/>
     &lt;enumeration value="tam tam"/>
     &lt;enumeration value="tam tam with beater"/>
     &lt;enumeration value="triangle"/>
     &lt;enumeration value="Vietnamese hat"/>
   &lt;/restriction>
 &lt;/simpleType>
 
  • Enum Constant Details

    • AGOGO

      public static final MetalValue AGOGO
    • ALMGLOCKEN

      public static final MetalValue ALMGLOCKEN
    • BELL

      public static final MetalValue BELL
    • BELL_PLATE

      public static final MetalValue BELL_PLATE
    • BELL_TREE

      public static final MetalValue BELL_TREE
    • BRAKE_DRUM

      public static final MetalValue BRAKE_DRUM
    • CENCERRO

      public static final MetalValue CENCERRO
    • CHAIN_RATTLE

      public static final MetalValue CHAIN_RATTLE
    • CHINESE_CYMBAL

      public static final MetalValue CHINESE_CYMBAL
    • COWBELL

      public static final MetalValue COWBELL
    • CRASH_CYMBALS

      public static final MetalValue CRASH_CYMBALS
    • CROTALE

      public static final MetalValue CROTALE
    • CYMBAL_TONGS

      public static final MetalValue CYMBAL_TONGS
    • DOMED_GONG

      public static final MetalValue DOMED_GONG
    • FINGER_CYMBALS

      public static final MetalValue FINGER_CYMBALS
    • FLEXATONE

      public static final MetalValue FLEXATONE
    • GONG

      public static final MetalValue GONG
    • HI_HAT

      public static final MetalValue HI_HAT
    • HIGH_HAT_CYMBALS

      public static final MetalValue HIGH_HAT_CYMBALS
    • HANDBELL

      public static final MetalValue HANDBELL
    • JAW_HARP

      public static final MetalValue JAW_HARP
    • JINGLE_BELLS

      public static final MetalValue JINGLE_BELLS
    • MUSICAL_SAW

      public static final MetalValue MUSICAL_SAW
    • SHELL_BELLS

      public static final MetalValue SHELL_BELLS
    • SISTRUM

      public static final MetalValue SISTRUM
    • SIZZLE_CYMBAL

      public static final MetalValue SIZZLE_CYMBAL
    • SLEIGH_BELLS

      public static final MetalValue SLEIGH_BELLS
    • SUSPENDED_CYMBAL

      public static final MetalValue SUSPENDED_CYMBAL
    • TAM_TAM

      public static final MetalValue TAM_TAM
    • TAM_TAM_WITH_BEATER

      public static final MetalValue TAM_TAM_WITH_BEATER
    • TRIANGLE

      public static final MetalValue TRIANGLE
    • VIETNAMESE_HAT

      public static final MetalValue VIETNAMESE_HAT
  • Method Details

    • values

      public static MetalValue[] 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 MetalValue 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 MetalValue fromValue(String v)