public enum WebLinkDisplayType extends Enum<WebLinkDisplayType>
Java class for WebLinkDisplayType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="WebLinkDisplayType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="link"/>
<enumeration value="button"/>
<enumeration value="massActionButton"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BUTTON |
LINK |
MASS_ACTION_BUTTON |
| Modifier and Type | Method and Description |
|---|---|
static WebLinkDisplayType |
fromValue(String v) |
String |
value() |
static WebLinkDisplayType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebLinkDisplayType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebLinkDisplayType LINK
public static final WebLinkDisplayType BUTTON
public static final WebLinkDisplayType MASS_ACTION_BUTTON
public static WebLinkDisplayType[] values()
for (WebLinkDisplayType c : WebLinkDisplayType.values()) System.out.println(c);
public static WebLinkDisplayType 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 nullpublic String value()
public static WebLinkDisplayType fromValue(String v)
Copyright © 2016. All rights reserved.