public static enum VoiceMail.Status extends Enum<VoiceMail.Status>
| Enum Constant and Description |
|---|
BLANK |
BUFFERING |
DELETING |
DOWNLOADING |
FAILED |
NOTDOWNLOADED
NOTDOWNLOADED - voicemail is stored on server (has not been downloaded yet)
DOWNLOADING - downloading from server to local machine
UNPLAYED - voicemail has been downloaded but not played back yet
BUFFERING - buffering for playback
PLAYING - currently played back
PLAYED - voicemail has been played back
BLANK - intermediate status when new object is created but recording has not begun
RECORDING - voicemail currently being recorded
RECORDED - voicemail recorded but not yet uploaded to the server
UPLOADING - voicemail object is currently being uploaded to server
UPLOADED - upload to server finished but not yet deleted; object is also locally stored
DELETING - pending delete
FAILED - downloading voicemail/greeting failed
UNKNOWN - unknown status
|
PLAYED |
PLAYING |
RECORDED |
RECORDING |
UNKNOWN |
UNPLAYED |
UPLOADED |
UPLOADING |
| Modifier and Type | Method and Description |
|---|---|
static VoiceMail.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VoiceMail.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VoiceMail.Status NOTDOWNLOADED
public static final VoiceMail.Status DOWNLOADING
public static final VoiceMail.Status UNPLAYED
public static final VoiceMail.Status BUFFERING
public static final VoiceMail.Status PLAYING
public static final VoiceMail.Status PLAYED
public static final VoiceMail.Status BLANK
public static final VoiceMail.Status RECORDING
public static final VoiceMail.Status RECORDED
public static final VoiceMail.Status UPLOADING
public static final VoiceMail.Status UPLOADED
public static final VoiceMail.Status DELETING
public static final VoiceMail.Status FAILED
public static final VoiceMail.Status UNKNOWN
public static VoiceMail.Status[] values()
for (VoiceMail.Status c : VoiceMail.Status.values()) System.out.println(c);
public static VoiceMail.Status 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 © 2013. All Rights Reserved.