Enum UrlBuilder.Css
- java.lang.Object
-
- java.lang.Enum<UrlBuilder.Css>
-
- edu.cornell.mannlib.vitro.webapp.controller.freemarker.UrlBuilder.Css
-
- All Implemented Interfaces:
Serializable,Comparable<UrlBuilder.Css>
- Enclosing class:
- UrlBuilder
public static enum UrlBuilder.Css extends Enum<UrlBuilder.Css>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOM_FORMJQUERY_UI
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringpath()StringtoString()static UrlBuilder.CssvalueOf(String name)Returns the enum constant of this type with the specified name.static UrlBuilder.Css[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CUSTOM_FORM
public static final UrlBuilder.Css CUSTOM_FORM
-
JQUERY_UI
public static final UrlBuilder.Css JQUERY_UI
-
-
Method Detail
-
values
public static UrlBuilder.Css[] 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 (UrlBuilder.Css c : UrlBuilder.Css.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UrlBuilder.Css 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
-
path
public String path()
-
toString
public String toString()
- Overrides:
toStringin classEnum<UrlBuilder.Css>
-
-