com.google.caja.service
Enum CajolingService.Transform

java.lang.Object
  extended by java.lang.Enum<CajolingService.Transform>
      extended by com.google.caja.service.CajolingService.Transform
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CajolingService.Transform>
Enclosing class:
CajolingService

public static enum CajolingService.Transform
extends java.lang.Enum<CajolingService.Transform>


Enum Constant Summary
CAJOLE
           
INNOCENT
           
 
Method Summary
static CajolingService.Transform valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CajolingService.Transform[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

INNOCENT

public static final CajolingService.Transform INNOCENT

CAJOLE

public static final CajolingService.Transform CAJOLE
Method Detail

values

public static final CajolingService.Transform[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(CajolingService.Transform c : CajolingService.Transform.values())
        System.out.println(c);

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

valueOf

public static CajolingService.Transform valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name


Copyright (C) 2008 Google Inc.
Licensed under the Apache License, Version 2.0