Enum Class Mute

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

public enum Mute extends Enum<Mute>

Java class for mute.

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

 &lt;simpleType name="mute">
   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
     &lt;enumeration value="on"/>
     &lt;enumeration value="off"/>
     &lt;enumeration value="straight"/>
     &lt;enumeration value="cup"/>
     &lt;enumeration value="harmon-no-stem"/>
     &lt;enumeration value="harmon-stem"/>
     &lt;enumeration value="bucket"/>
     &lt;enumeration value="plunger"/>
     &lt;enumeration value="hat"/>
     &lt;enumeration value="solotone"/>
     &lt;enumeration value="practice"/>
     &lt;enumeration value="stop-mute"/>
     &lt;enumeration value="stop-hand"/>
     &lt;enumeration value="echo"/>
     &lt;enumeration value="palm"/>
   &lt;/restriction>
 &lt;/simpleType>
 
  • Enum Constant Details

    • ON

      public static final Mute ON
    • OFF

      public static final Mute OFF
    • STRAIGHT

      public static final Mute STRAIGHT
    • CUP

      public static final Mute CUP
    • HARMON_NO_STEM

      public static final Mute HARMON_NO_STEM
    • HARMON_STEM

      public static final Mute HARMON_STEM
    • BUCKET

      public static final Mute BUCKET
    • PLUNGER

      public static final Mute PLUNGER
    • HAT

      public static final Mute HAT
    • SOLOTONE

      public static final Mute SOLOTONE
    • PRACTICE

      public static final Mute PRACTICE
    • STOP_MUTE

      public static final Mute STOP_MUTE
    • STOP_HAND

      public static final Mute STOP_HAND
    • ECHO

      public static final Mute ECHO
    • PALM

      public static final Mute PALM
  • Method Details

    • values

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