com.skype
Enum VoiceMail.Status
java.lang.Object
java.lang.Enum<VoiceMail.Status>
com.skype.VoiceMail.Status
- All Implemented Interfaces:
- Serializable, Comparable<VoiceMail.Status>
- Enclosing class:
- VoiceMail
public static enum VoiceMail.Status
- extends Enum<VoiceMail.Status>
Enumeration of VoiceMail status types.
Enum Constant Summary |
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
|
NOTDOWNLOADED
public static final VoiceMail.Status 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
DOWNLOADING
public static final VoiceMail.Status DOWNLOADING
UNPLAYED
public static final VoiceMail.Status UNPLAYED
BUFFERING
public static final VoiceMail.Status BUFFERING
PLAYING
public static final VoiceMail.Status PLAYING
PLAYED
public static final VoiceMail.Status PLAYED
BLANK
public static final VoiceMail.Status BLANK
RECORDING
public static final VoiceMail.Status RECORDING
RECORDED
public static final VoiceMail.Status RECORDED
UPLOADING
public static final VoiceMail.Status UPLOADING
UPLOADED
public static final VoiceMail.Status UPLOADED
DELETING
public static final VoiceMail.Status DELETING
FAILED
public static final VoiceMail.Status FAILED
UNKNOWN
public static final VoiceMail.Status UNKNOWN
values
public static VoiceMail.Status[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (VoiceMail.Status c : VoiceMail.Status.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static VoiceMail.Status valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (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 type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2004-2011. All Rights Reserved.