|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<Account.PROPERTY>
com.skype.api.Account.PROPERTY
public static enum Account.PROPERTY
Properties of the Account class
| Enum Constant Summary | |
|---|---|
about
arbitrary introductory text, type: String |
|
availability
Contact.AVAILABILITY, type: Contact.AVAILABILITY |
|
avatar_image
Account avatar picture can be set with Account.SetBinProperty method. |
|
avatar_policy
Server-side account property, use SetServerside*Property() to set, type: AVATARPOLICY |
|
avatar_timestamp
UNIX timestamp of when current avatar was set, type: int |
|
birthday
YYYYMMDD, type: int |
|
buddycount_policy
Server-side account property, use SetServerside*Property() to set, type: BUDDYCOUNTPOLICY |
|
cblsyncstatus
Account.CBLSYNCSTATUS, type: CBLSYNCSTATUS |
|
chat_policy
Server-side account property, use SetServerside*Property() to set, type: CHATPOLICY |
|
city
type: String |
|
commitstatus
Account.COMMITSTATUS, type: COMMITSTATUS |
|
country
ISO country code, type: String |
|
emails
This is a string property, that contains space-separated list of email addresses. |
|
fullname
type: String |
|
gender
1-male, 2-female, type: int |
|
homepage
type: String |
|
languages
ISO language codes, space-separated, type: String |
|
logoutreason
This property should only be examined when Account.P_STATUS is LOGGED_OUT or LOGGED_OUT_AND_PWD_SAVED. |
|
mood_text
Personal mood text (visible to authorised users only). |
|
mood_timestamp
UNIX timestamp of when current mood was set, type: int |
|
nr_of_other_instances
number of times this user is logged in from other computers, type: int |
|
nrof_authed_buddies
Count of this user's authorized contacts. |
|
offline_callforward
space-separated list of 'begSecond,endSecond,identity' tokens, type: String |
|
partner_optedout
Alerts: opted out partner id's, space separated, type: String |
|
phone_home
NB! string not integer, type: String |
|
phone_mobile
type: String |
|
phone_office
type: String |
|
phonenumbers_policy
Server-side account property, use SetServerside*Property() to set, type: PHONENUMBERSPOLICY |
|
profile_timestamp
UNIX timestamp of last profile change, type: int |
|
province
type: String |
|
pstn_call_policy
Server-side account property, use SetServerside*Property() to set, type: PSTNCALLPOLICY |
|
pwdchangestatus
Account.PWDCHANGESTATUS, type: PWDCHANGESTATUS |
|
registration_timestamp
NB! Unlike your common UNIX timestamps, the registration_timestamp is special, as it counts MINUTES rather than seconds, from Epoch (January 1, 1970) , type: int |
|
rich_mood_text
XML version of CONTACT_MOOD_TEXT. |
|
service_provider_info
service information if the user is a paid service provider, type: String |
|
skype_call_policy
Server-side account property, use SetServerside*Property() to set, type: SKYPECALLPOLICY |
|
skypein_numbers
space-separated list of skypein numbers, type: String |
|
skypename
type: String |
|
skypeout_balance
balance in 'cents', type: int |
|
skypeout_balance_currency
'EUR', 'USD', etc., type: String |
|
skypeout_precision
decimal points in ACCOUNT_SKYPEOUT_BALANCE, type: int |
|
status
Account.STATUS, type: STATUS |
|
suggested_skypename
suggested skypename. |
|
timezone
24*3600+diff_to_UTC_in_seconds. |
|
timezone_policy
Server-side account property, use SetServerside*Property() to set, type: TIMEZONEPOLICY |
|
voicemail_policy
Server-side account property, use SetServerside*Property() to set, type: VOICEMAILPOLICY |
|
webpresence_policy
Server-side account property, use SetServerside*Property() to set, type: WEBPRESENCEPOLICY |
|
| Method Summary | |
|---|---|
static Account.PROPERTY |
fromString(java.lang.String s)
|
static Account.PROPERTY |
get(int code)
|
int |
getId()
|
static Account.PROPERTY |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Account.PROPERTY[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Account.PROPERTY status
public static final Account.PROPERTY pwdchangestatus
public static final Account.PROPERTY logoutreason
public static final Account.PROPERTY commitstatus
public static final Account.PROPERTY suggested_skypename
public static final Account.PROPERTY skypeout_balance_currency
public static final Account.PROPERTY skypeout_balance
public static final Account.PROPERTY skypeout_precision
public static final Account.PROPERTY skypein_numbers
public static final Account.PROPERTY cblsyncstatus
public static final Account.PROPERTY offline_callforward
public static final Account.PROPERTY chat_policy
public static final Account.PROPERTY skype_call_policy
public static final Account.PROPERTY pstn_call_policy
public static final Account.PROPERTY avatar_policy
public static final Account.PROPERTY buddycount_policy
public static final Account.PROPERTY timezone_policy
public static final Account.PROPERTY webpresence_policy
public static final Account.PROPERTY phonenumbers_policy
public static final Account.PROPERTY voicemail_policy
public static final Account.PROPERTY partner_optedout
public static final Account.PROPERTY service_provider_info
public static final Account.PROPERTY registration_timestamp
public static final Account.PROPERTY nr_of_other_instances
public static final Account.PROPERTY skypename
public static final Account.PROPERTY fullname
public static final Account.PROPERTY birthday
public static final Account.PROPERTY gender
public static final Account.PROPERTY languages
public static final Account.PROPERTY country
public static final Account.PROPERTY province
public static final Account.PROPERTY city
public static final Account.PROPERTY phone_home
public static final Account.PROPERTY phone_office
public static final Account.PROPERTY phone_mobile
public static final Account.PROPERTY emails
public static final Account.PROPERTY homepage
public static final Account.PROPERTY about
public static final Account.PROPERTY profile_timestamp
public static final Account.PROPERTY mood_text
public static final Account.PROPERTY timezone
public static final Account.PROPERTY nrof_authed_buddies
public static final Account.PROPERTY availability
public static final Account.PROPERTY avatar_image
public static final Account.PROPERTY avatar_timestamp
public static final Account.PROPERTY mood_timestamp
public static final Account.PROPERTY rich_mood_text
| Method Detail |
|---|
public static Account.PROPERTY[] values()
for (Account.PROPERTY c : Account.PROPERTY.values()) System.out.println(c);
public static Account.PROPERTY valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is nullpublic int getId()
public static Account.PROPERTY get(int code)
public static Account.PROPERTY fromString(java.lang.String s)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||