When referencing an enum constant with an expression, you use a String literal. For example, consider this Enum class:
public enum Suit {hearts, spades, diamonds, clubs}
To refer to the Suit constant, Suit.hearts with an expression, you use the String literal, "hearts"
This article:
* Provides a fast track code intensive tutorial to get started with JSP 2.0
* Describes the new features in JSP 2.0
* Offers a flavor of the effort involved in developing applications using JSP 2.0
* Provides sample code that you can adapt for your own applications
Welcome to JUEL! JUEL is an implementation of the Unified Expression Language (EL), specified a part of the JSP 2.1 standard (JSR-245). Motivation Once, the EL started as part of JSTL. Then, the EL made its way into the JSP 2.0 standard. Now, though par