public static enum VoiceMail.Type extends Enum<VoiceMail.Type>
| Enum Constant and Description |
|---|
CUSTOM_GREETING |
DEFAULT_GREETING |
INCOMING
INCOMING - voicemail received from partner
OUTGOING - voicemail sent to partner
DEFAULT_GREETING - Skype default greeting from partner
CUSTOM_GREETING - partner's recorded custom greeting
UNKNOWN - unknown type
|
OUTGOING |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static VoiceMail.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VoiceMail.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VoiceMail.Type INCOMING
public static final VoiceMail.Type OUTGOING
public static final VoiceMail.Type DEFAULT_GREETING
public static final VoiceMail.Type CUSTOM_GREETING
public static final VoiceMail.Type UNKNOWN
public static VoiceMail.Type[] values()
for (VoiceMail.Type c : VoiceMail.Type.values()) System.out.println(c);
public static VoiceMail.Type 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.