ro.isdc.wro.model.resource
Enum ResourceType

java.lang.Object
  extended by java.lang.Enum<ResourceType>
      extended by ro.isdc.wro.model.resource.ResourceType
All Implemented Interfaces:
Serializable, Comparable<ResourceType>

public enum ResourceType
extends Enum<ResourceType>

Make a distinction between resource type. Can be CSS or JS.

Author:
Alex Objelean

Enum Constant Summary
CSS
           
JS
           
 
Method Summary
static ResourceType get(String typeAsString)
           
abstract  String getContentType()
           
static ResourceType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ResourceType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CSS

public static final ResourceType CSS

JS

public static final ResourceType JS
Method Detail

values

public static ResourceType[] 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 (ResourceType c : ResourceType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ResourceType 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 name
NullPointerException - if the argument is null

getContentType

public abstract String getContentType()
Returns:
the content type of the resource type.

get

public static ResourceType get(String typeAsString)
Returns:
ResourceType associated to the string representation of the type.


Copyright © 2008-2013. All Rights Reserved.