Enum LanguageTypes
- java.lang.Object
-
- java.lang.Enum<LanguageTypes>
-
- es.bsc.dataclay.serialization.java.LanguageTypes
-
- All Implemented Interfaces:
Serializable
,Comparable<LanguageTypes>
public enum LanguageTypes extends Enum<LanguageTypes>
Language types (used during serialization/deserialization).
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LanguageTypes
valueOf(String name)
Returns the enum constant of this type with the specified name.static LanguageTypes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATACLAYOBJ
public static final LanguageTypes DATACLAYOBJ
-
INT
public static final LanguageTypes INT
-
BOOL
public static final LanguageTypes BOOL
-
BYTE
public static final LanguageTypes BYTE
-
CHAR
public static final LanguageTypes CHAR
-
DOUBLE
public static final LanguageTypes DOUBLE
-
FLOAT
public static final LanguageTypes FLOAT
-
LONG
public static final LanguageTypes LONG
-
SHORT
public static final LanguageTypes SHORT
-
JAVA_INTEGER
public static final LanguageTypes JAVA_INTEGER
-
JAVA_BOOLEAN
public static final LanguageTypes JAVA_BOOLEAN
-
JAVA_BYTE
public static final LanguageTypes JAVA_BYTE
-
JAVA_CHARACTER
public static final LanguageTypes JAVA_CHARACTER
-
JAVA_DOUBLE
public static final LanguageTypes JAVA_DOUBLE
-
JAVA_FLOAT
public static final LanguageTypes JAVA_FLOAT
-
JAVA_LONG
public static final LanguageTypes JAVA_LONG
-
JAVA_SHORT
public static final LanguageTypes JAVA_SHORT
-
JAVA_STRING
public static final LanguageTypes JAVA_STRING
-
JAVA_ARRAY
public static final LanguageTypes JAVA_ARRAY
-
JAVA_PRIMITIVE_ARRAY
public static final LanguageTypes JAVA_PRIMITIVE_ARRAY
-
JAVA_COLLECTION
public static final LanguageTypes JAVA_COLLECTION
-
JAVA_MAP
public static final LanguageTypes JAVA_MAP
-
JAVA_MAP_ENTRY
public static final LanguageTypes JAVA_MAP_ENTRY
-
JAVA_OBJECT
public static final LanguageTypes JAVA_OBJECT
-
DATACLAY_OID
public static final LanguageTypes DATACLAY_OID
-
DATACLAY_EXECID
public static final LanguageTypes DATACLAY_EXECID
-
DATACLAY_INSTANCEID
public static final LanguageTypes DATACLAY_INSTANCEID
-
JAVA_ATOMIC_INTEGER
public static final LanguageTypes JAVA_ATOMIC_INTEGER
-
-
Method Detail
-
values
public static LanguageTypes[] 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 (LanguageTypes c : LanguageTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LanguageTypes 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 nameNullPointerException
- if the argument is null
-
-