org.apache.tapestry.spec
Class AssetType

java.lang.Object
  extended by org.apache.commons.lang.enum.Enum
      extended by org.apache.tapestry.spec.AssetType
All Implemented Interfaces:
Serializable, Comparable

public final class AssetType
extends org.apache.commons.lang.enum.Enum

Defines the types of assets.

Version:
$Id: AssetType.java 243791 2004-02-19 17:38:13Z hlship $
Author:
Howard Lewis Ship
See Also:
IAssetSpecification, Serialized Form

Field Summary
static AssetType CONTEXT
          A resource visible to the ServletContext.
static AssetType EXTERNAL
          An external resource.
static AssetType PRIVATE
          An internal resource visible only on the classpath.
 
Method Summary
 
Methods inherited from class org.apache.commons.lang.enum.Enum
compareTo, equals, getEnum, getEnumList, getEnumMap, getName, hashCode, iterator, readResolve, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

EXTERNAL

public static final AssetType EXTERNAL
An external resource.


CONTEXT

public static final AssetType CONTEXT
A resource visible to the ServletContext.


PRIVATE

public static final AssetType PRIVATE
An internal resource visible only on the classpath. Typically, a resource package in a WAR or JAR file alongside the classes.