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