public enum Linkmode extends Enum<Linkmode>
Java class for linkmode.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="linkmode"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="intern"/> <enumeration value="extern"/> <enumeration value="webservice"/> <enumeration value="rest"/> </restriction> </simpleType>
Enum Constant and Description |
---|
EXTERN
An external link, thus means it must be absolute.
|
INTERN
An internal link, the target must be relative to the application root URL.
|
REST
A link to a RESTful service.
|
WEBSERVICE
A link to a
org.appng.api.Webservice , must start with the bean-name of the webservice. |
Modifier and Type | Method and Description |
---|---|
static Linkmode |
fromValue(String v) |
String |
value() |
static Linkmode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Linkmode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Linkmode INTERN
public static final Linkmode EXTERN
public static final Linkmode WEBSERVICE
org.appng.api.Webservice
, must start with the bean-name of the webservice.public static final Linkmode REST
public static Linkmode[] values()
for (Linkmode c : Linkmode.values()) System.out.println(c);
public static Linkmode 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()
Copyright © 2011–2020 aiticon GmbH. All rights reserved.