Package org.xmlet.htmlapifaster
Enum EnumRelType
- java.lang.Object
-
- java.lang.Enum<EnumRelType>
-
- org.xmlet.htmlapifaster.EnumRelType
-
- All Implemented Interfaces:
Serializable,Comparable<EnumRelType>,org.xmlet.xsdasmfaster.classes.infrastructure.EnumInterface<String>
public enum EnumRelType extends Enum<EnumRelType> implements org.xmlet.xsdasmfaster.classes.infrastructure.EnumInterface<String>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static EnumRelTypevalueOf(String name)Returns the enum constant of this type with the specified name.static EnumRelType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALTERNATE
public static final EnumRelType ALTERNATE
-
AUTHOR
public static final EnumRelType AUTHOR
-
HELP
public static final EnumRelType HELP
-
ICON
public static final EnumRelType ICON
-
LICENSE
public static final EnumRelType LICENSE
-
NEXT
public static final EnumRelType NEXT
-
PREV
public static final EnumRelType PREV
-
SEARCH
public static final EnumRelType SEARCH
-
STYLESHEET
public static final EnumRelType STYLESHEET
-
-
Method Detail
-
values
public static EnumRelType[] 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 (EnumRelType c : EnumRelType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EnumRelType 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
-
-