Enum CEFFactory.ReturnType
- java.lang.Object
-
- java.lang.Enum<CEFFactory.ReturnType>
-
- org.eclipse.swt.internal.chromium.CEFFactory.ReturnType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CEFFactory.ReturnType>
- Enclosing class:
- CEFFactory
public static enum CEFFactory.ReturnType extends java.lang.Enum<CEFFactory.ReturnType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CEFFactory.ReturnType
from(java.lang.String v)
int
intValue()
static CEFFactory.ReturnType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CEFFactory.ReturnType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Double
public static final CEFFactory.ReturnType Double
-
Bool
public static final CEFFactory.ReturnType Bool
-
Str
public static final CEFFactory.ReturnType Str
-
Null
public static final CEFFactory.ReturnType Null
-
Array
public static final CEFFactory.ReturnType Array
-
Error
public static final CEFFactory.ReturnType Error
-
-
Method Detail
-
values
public static CEFFactory.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 (CEFFactory.ReturnType c : CEFFactory.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 CEFFactory.ReturnType 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 namejava.lang.NullPointerException
- if the argument is null
-
intValue
public int intValue()
-
from
public static CEFFactory.ReturnType from(java.lang.String v)
-
-