org.eobjects.analyzer.beans.script
Enum JavaScriptTransformer.ReturnType
java.lang.Object
java.lang.Enum<JavaScriptTransformer.ReturnType>
org.eobjects.analyzer.beans.script.JavaScriptTransformer.ReturnType
- All Implemented Interfaces:
- Serializable, Comparable<JavaScriptTransformer.ReturnType>
- Enclosing class:
- JavaScriptTransformer
public static enum JavaScriptTransformer.ReturnType
- extends Enum<JavaScriptTransformer.ReturnType>
STRING
public static final JavaScriptTransformer.ReturnType STRING
NUMBER
public static final JavaScriptTransformer.ReturnType NUMBER
BOOLEAN
public static final JavaScriptTransformer.ReturnType BOOLEAN
values
public static JavaScriptTransformer.ReturnType[] 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 (JavaScriptTransformer.ReturnType c : JavaScriptTransformer.ReturnType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static JavaScriptTransformer.ReturnType 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
Copyright © 2012 eobjects.org. All Rights Reserved.