public enum UrlLinkTypeEnum extends java.lang.Enum<UrlLinkTypeEnum>
Java class for UrlLinkTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="UrlLinkTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="documentPdf"/> <enumeration value="html"/> <enumeration value="image"/> <enumeration value="rss"/> <enumeration value="videoStream"/> <enumeration value="voiceStream"/> <enumeration value="other"/> </restriction> </simpleType>
Enum Constant and Description |
---|
DOCUMENT_PDF
URL link to a pdf document.
|
HTML
URL link to an html page.
|
IMAGE
URL link to an image.
|
OTHER
Other than as defined in this enumeration.
|
RSS
URL link to an RSS feed.
|
VIDEO_STREAM
URL link to a video stream.
|
VOICE_STREAM
URL link to a voice stream.
|
Modifier and Type | Method and Description |
---|---|
static UrlLinkTypeEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static UrlLinkTypeEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UrlLinkTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UrlLinkTypeEnum DOCUMENT_PDF
public static final UrlLinkTypeEnum HTML
public static final UrlLinkTypeEnum IMAGE
public static final UrlLinkTypeEnum RSS
public static final UrlLinkTypeEnum VIDEO_STREAM
public static final UrlLinkTypeEnum VOICE_STREAM
public static final UrlLinkTypeEnum OTHER
public static UrlLinkTypeEnum[] values()
for (UrlLinkTypeEnum c : UrlLinkTypeEnum.values()) System.out.println(c);
public static UrlLinkTypeEnum 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 nullpublic java.lang.String value()
public static UrlLinkTypeEnum fromValue(java.lang.String v)