public enum PanelLocation extends Enum<PanelLocation>
Java class for panel-location.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="panel-location"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="inline"/> <enumeration value="top"/> <enumeration value="bottom"/> <enumeration value="both"/> </restriction> </simpleType>
Enum Constant and Description |
---|
BOTH
The linkpanel is displayed above and beneath the
Datasource . |
BOTTOM
The linkpanel is displayed on the bottom, beneath the
Datasource . |
INLINE
|
TOP
The linkpanel is displayed on the top, above the
Datasource . |
Modifier and Type | Method and Description |
---|---|
static PanelLocation |
fromValue(String v) |
String |
value() |
static PanelLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PanelLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PanelLocation INLINE
public static final PanelLocation TOP
Datasource
.public static final PanelLocation BOTTOM
Datasource
.public static final PanelLocation BOTH
Datasource
.public static PanelLocation[] values()
for (PanelLocation c : PanelLocation.values()) System.out.println(c);
public static PanelLocation 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 PanelLocation fromValue(String v)
Copyright © 2011–2017 aiticon GmbH. All rights reserved.