public enum WebLinkType extends Enum<WebLinkType>
| Enum Constant and Description |
|---|
ProviderLogoURL
A URL that points to a (small) logo of the organisation that provides the resource data.
e.g. |
Related
A URL that points to a website that is related to the resource.
e.g. |
SourceURL
A URL that points to the raw resource data.
e.g. |
ThumbnailURL
A URL that points to a small image or thumbnail that represents the resource data itself.
e.g. |
ViewURL
A URL that points to the website at which the resource data can be viewed.
e.g. |
| Modifier and Type | Method and Description |
|---|---|
static WebLinkType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebLinkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebLinkType ViewURL
public static final WebLinkType SourceURL
public static final WebLinkType ProviderLogoURL
public static final WebLinkType ThumbnailURL
public static final WebLinkType Related
public static WebLinkType[] values()
for (WebLinkType c : WebLinkType.values()) System.out.println(c);
public static WebLinkType 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 © 2017–2019. All rights reserved.