public enum WebService extends java.lang.Enum<WebService>
| Enum Constant and Description |
|---|
FACEBOOK |
FEED |
FLICKR |
GITHUB |
GOOGLE_PLUS |
LINKED_IN |
SKYPE |
TWITTER |
URL |
XING |
YOUTUBE |
| Modifier and Type | Method and Description |
|---|---|
static WebService |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WebService[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebService URL
public static final WebService SKYPE
public static final WebService TWITTER
public static final WebService FACEBOOK
public static final WebService LINKED_IN
public static final WebService XING
public static final WebService FEED
public static final WebService GOOGLE_PLUS
public static final WebService FLICKR
public static final WebService GITHUB
public static final WebService YOUTUBE
public static WebService[] values()
for (WebService c : WebService.values()) System.out.println(c);
public static WebService 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