Package net.moewes.cloudui.ui5
Enum Ui5Link.Target
- java.lang.Object
-
- java.lang.Enum<Ui5Link.Target>
-
- net.moewes.cloudui.ui5.Ui5Link.Target
-
- All Implemented Interfaces:
Serializable
,Comparable<Ui5Link.Target>
- Enclosing class:
- Ui5Link
public static enum Ui5Link.Target extends Enum<Ui5Link.Target>
possible values for target attribute of ui5-link
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Ui5Link.Target
valueOf(String name)
Returns the enum constant of this type with the specified name.static Ui5Link.Target[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SELF
public static final Ui5Link.Target SELF
-
TOP
public static final Ui5Link.Target TOP
-
BLANK
public static final Ui5Link.Target BLANK
-
PARENT
public static final Ui5Link.Target PARENT
-
SEARCH
public static final Ui5Link.Target SEARCH
-
-
Method Detail
-
values
public static Ui5Link.Target[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Ui5Link.Target c : Ui5Link.Target.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Ui5Link.Target valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-