public static enum Website.Rel extends java.lang.Enum<Website.Rel>
Enum Constant and Description |
---|
BLOG
Blog website.
|
FTP
Ftp website.
|
HOME
Home website.
|
HOME_PAGE
Home-page website.
|
OTHER
Other website.
|
PROFILE
Profile website.
|
WORK
Work website.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toValue()
Returns the value used in the XML.
|
static Website.Rel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Website.Rel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Website.Rel BLOG
public static final Website.Rel FTP
public static final Website.Rel HOME
public static final Website.Rel HOME_PAGE
public static final Website.Rel OTHER
public static final Website.Rel PROFILE
public static final Website.Rel WORK
public static Website.Rel[] values()
for (Website.Rel c : Website.Rel.values()) System.out.println(c);
public static Website.Rel valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toValue()