List of usage examples for java.lang Enum subclass-usage
From source file com.silverwrist.dynamo.Verb.java
/**
* A type-safe enumerated type that indicates the action of a {@link com.silverwrist.dynamo.iface.Request Request}
* that comes in from the framework. <CODE>Verb</CODE> objects correspond roughly to HTTP methods.
*
* @author Eric J. Bowersox <erbo@silcom.com>
* @version X
From source file com.silverwrist.dynamo.servlet.HttpMethod.java
public final class HttpMethod extends Enum { /*-------------------------------------------------------------------------------- * The actual enumeration values *-------------------------------------------------------------------------------- */
From source file com.silverwrist.dynamo.RequestType.java
/**
* A type-safe enumerated type that indicates the type of a {@link com.silverwrist.dynamo.iface.Request Request}
* that comes in from the framework. It is also used to indicate the type of a
* {@link com.silverwrist.dynamo.iface.SessionInfo SessionInfo} object.
*
* @author Eric J. Bowersox <erbo@silcom.com>
From source file com.silverwrist.dynamo.BrowserFlag.java
/**
* A type-safe enumerated type that indicates the capabilities of a browser. These objects are returned
* in a set by the {@link com.silverwrist.dynamo.iface.BrowserData#getBrowserFlags() BrowserData.getBrowserFlags()}
* method.
*
* @author Eric J. Bowersox <erbo@silcom.com>