public static enum Url.Field extends Enum<Url.Field>
Enum Constant and Description |
---|
LINK_TEXT
the name of the linkText field.
|
TYPE
the name of the type field.
|
VALUE
the name of the value field.
|
Modifier and Type | Method and Description |
---|---|
String |
toString()
The string representation of the enum.
|
static Url.Field |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Url.Field[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Url.Field VALUE
public static final Url.Field LINK_TEXT
public static final Url.Field TYPE
public static Url.Field[] values()
for (Url.Field c : Url.Field.values()) System.out.println(c);
public static Url.Field 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 nullCopyright © 2016 WSO2. All Rights Reserved.