Enum Class EffectValue

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

public enum EffectValue extends Enum<EffectValue>

Java class for effect-value.

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

 &lt;simpleType name="effect-value">
   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
     &lt;enumeration value="anvil"/>
     &lt;enumeration value="auto horn"/>
     &lt;enumeration value="bird whistle"/>
     &lt;enumeration value="cannon"/>
     &lt;enumeration value="duck call"/>
     &lt;enumeration value="gun shot"/>
     &lt;enumeration value="klaxon horn"/>
     &lt;enumeration value="lions roar"/>
     &lt;enumeration value="lotus flute"/>
     &lt;enumeration value="megaphone"/>
     &lt;enumeration value="police whistle"/>
     &lt;enumeration value="siren"/>
     &lt;enumeration value="slide whistle"/>
     &lt;enumeration value="thunder sheet"/>
     &lt;enumeration value="wind machine"/>
     &lt;enumeration value="wind whistle"/>
   &lt;/restriction>
 &lt;/simpleType>
 
  • Enum Constant Details

    • ANVIL

      public static final EffectValue ANVIL
    • AUTO_HORN

      public static final EffectValue AUTO_HORN
    • BIRD_WHISTLE

      public static final EffectValue BIRD_WHISTLE
    • CANNON

      public static final EffectValue CANNON
    • DUCK_CALL

      public static final EffectValue DUCK_CALL
    • GUN_SHOT

      public static final EffectValue GUN_SHOT
    • KLAXON_HORN

      public static final EffectValue KLAXON_HORN
    • LIONS_ROAR

      public static final EffectValue LIONS_ROAR
    • LOTUS_FLUTE

      public static final EffectValue LOTUS_FLUTE
    • MEGAPHONE

      public static final EffectValue MEGAPHONE
    • POLICE_WHISTLE

      public static final EffectValue POLICE_WHISTLE
    • SIREN

      public static final EffectValue SIREN
    • SLIDE_WHISTLE

      public static final EffectValue SLIDE_WHISTLE
    • THUNDER_SHEET

      public static final EffectValue THUNDER_SHEET
    • WIND_MACHINE

      public static final EffectValue WIND_MACHINE
    • WIND_WHISTLE

      public static final EffectValue WIND_WHISTLE
  • Method Details

    • values

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