org.richfaces.cdk.templatecompiler.el
Enum HelperMethod

java.lang.Object
  extended by java.lang.Enum<HelperMethod>
      extended by org.richfaces.cdk.templatecompiler.el.HelperMethod
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<HelperMethod>

public enum HelperMethod
extends java.lang.Enum<HelperMethod>

Author:
Nick Belaevski

Enum Constant Summary
EMPTINESS_CHECK
           
EQUALS_CHECK
           
TO_BOOLEAN_CONVERSION
           
TO_STRING_CONVERSION
           
 
Method Summary
 java.lang.Class<?>[] getArgumentTypes()
           
static java.util.Set<HelperMethod> getConversionMethods()
           
 java.lang.String getName()
           
 java.lang.Class<?> getReturnType()
           
static HelperMethod valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static HelperMethod[] 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

TO_STRING_CONVERSION

public static final HelperMethod TO_STRING_CONVERSION

TO_BOOLEAN_CONVERSION

public static final HelperMethod TO_BOOLEAN_CONVERSION

EMPTINESS_CHECK

public static final HelperMethod EMPTINESS_CHECK

EQUALS_CHECK

public static final HelperMethod EQUALS_CHECK
Method Detail

values

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

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

valueOf

public static HelperMethod 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
java.lang.NullPointerException - if the argument is null

getName

public java.lang.String getName()

getReturnType

public java.lang.Class<?> getReturnType()

getArgumentTypes

public java.lang.Class<?>[] getArgumentTypes()

getConversionMethods

public static java.util.Set<HelperMethod> getConversionMethods()


Copyright © 2010 JBoss, a division of Red Hat, Inc.. All Rights Reserved.