public enum PushoverSound extends Enum<PushoverSound>
| Enum Constant and Description |
|---|
alien
Alien Alarm (long)
|
bike
Bike
|
bugle
Bugle
|
cashregister
Cash Register
|
classical
Classical
|
climb
Climb (long)
|
cosmic
Cosmic
|
echo
Pushover Echo (long)
|
falling
Falling
|
gamelan
Gamelan
|
incoming
Incoming
|
intermission
Intermission
|
magic
Magic
|
mechanical
Mechanical
|
none
None (silent)
|
persistent
Persistent (long)
|
pianobar
Piano Bar
|
pushover
Pushover (default)
|
siren
Siren
|
spacealarm
Space Alarm
|
tugboat
Tug Boat
|
updown
Up Down (long)
|
| Modifier and Type | Method and Description |
|---|---|
static PushoverSound |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PushoverSound[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PushoverSound pushover
public static final PushoverSound bike
public static final PushoverSound bugle
public static final PushoverSound cashregister
public static final PushoverSound classical
public static final PushoverSound cosmic
public static final PushoverSound falling
public static final PushoverSound gamelan
public static final PushoverSound incoming
public static final PushoverSound intermission
public static final PushoverSound magic
public static final PushoverSound mechanical
public static final PushoverSound pianobar
public static final PushoverSound siren
public static final PushoverSound spacealarm
public static final PushoverSound tugboat
public static final PushoverSound alien
public static final PushoverSound climb
public static final PushoverSound persistent
public static final PushoverSound echo
public static final PushoverSound updown
public static final PushoverSound none
public static PushoverSound[] values()
for (PushoverSound c : PushoverSound.values()) System.out.println(c);
public static PushoverSound valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All rights reserved.