public enum ContactSocialNetwork extends java.lang.Enum<ContactSocialNetwork>
| Enum Constant and Description |
|---|
Facebook |
Flickr |
GooglePlus |
LinkedIn |
Twitter |
Unknown |
| Modifier and Type | Method and Description |
|---|---|
static ContactSocialNetwork |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContactSocialNetwork[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContactSocialNetwork Twitter
public static final ContactSocialNetwork Facebook
public static final ContactSocialNetwork GooglePlus
public static final ContactSocialNetwork LinkedIn
public static final ContactSocialNetwork Flickr
public static final ContactSocialNetwork Unknown
public static ContactSocialNetwork[] values()
for (ContactSocialNetwork c : ContactSocialNetwork.values()) System.out.println(c);
public static ContactSocialNetwork 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 namejava.lang.NullPointerException - if the argument is null