Enum Class Sound

java.lang.Object
java.lang.Enum<Sound>
de.svenkubiak.jpushover.enums.Sound
All Implemented Interfaces:
Serializable, Comparable<Sound>, Constable

public enum Sound extends Enum<Sound>
  • Enum Constant Details

    • ALIEN

      public static final Sound ALIEN
    • BIKE

      public static final Sound BIKE
    • BUGLE

      public static final Sound BUGLE
    • CASH_REGISTER

      public static final Sound CASH_REGISTER
    • CLASSICAL

      public static final Sound CLASSICAL
    • CLIMB

      public static final Sound CLIMB
    • COSMIC

      public static final Sound COSMIC
    • ECHO

      public static final Sound ECHO
    • FALLING

      public static final Sound FALLING
    • GAME_LAN

      public static final Sound GAME_LAN
    • INCOMING

      public static final Sound INCOMING
    • INTERMISSION

      public static final Sound INTERMISSION
    • MAGIC

      public static final Sound MAGIC
    • MECHANICAL

      public static final Sound MECHANICAL
    • NONE

      public static final Sound NONE
    • PERSISTENT

      public static final Sound PERSISTENT
    • PIANO_BAR

      public static final Sound PIANO_BAR
    • PUSHOVER

      public static final Sound PUSHOVER
    • SIREN

      public static final Sound SIREN
    • SPACE_ALARM

      public static final Sound SPACE_ALARM
    • TUGBOAT

      public static final Sound TUGBOAT
    • UP_DOWN

      public static final Sound UP_DOWN
  • Method Details

    • values

      public static Sound[] 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 Sound 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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Sound>