public static enum RelatedLink.LinkType extends Enum<RelatedLink.LinkType>
| Enum Constant and Description |
|---|
ARTICLE |
FACEBOOK |
FLICKR |
SIMULCAST |
TWITTER |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static RelatedLink.LinkType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RelatedLink.LinkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelatedLink.LinkType FACEBOOK
public static final RelatedLink.LinkType TWITTER
public static final RelatedLink.LinkType FLICKR
public static final RelatedLink.LinkType SIMULCAST
public static final RelatedLink.LinkType ARTICLE
public static final RelatedLink.LinkType UNKNOWN
public static RelatedLink.LinkType[] values()
for (RelatedLink.LinkType c : RelatedLink.LinkType.values()) System.out.println(c);
public static RelatedLink.LinkType 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 © 2014. All rights reserved.