Enum: VariableDataType
Last update: 22.06.2026Package: com.phoenix_int.pacz.api
Class Hierarchy
↳ java.lang.Object
↳ java.lang.Enum<variabledatatype>
↳ com.phoenix_int.pacz.api.VariableDataType
Implemented Interfaces
java.io.Serializable,java.lang.Comparable<variabledatatype>
Deprecated.
IRuntimeVariables are now using the canonical PHX type identifiers which are literal strings (see com.phoenix_int.pacz.api.v2.IRuntimeVariables)
@Deprecated
public enum VariableDataType
extends java.lang.Enum<variabledatatype>
Supported variable data types
Enum Constant Summary
| Enum Constant and Description |
|---|
BOOLEANDeprecated. Variable is of boolean type |
BOOLEAN_ARRAYDeprecated. Variable is of boolean array type |
DOUBLEDeprecated. Variable is of double type |
DOUBLE_ARRAYDeprecated. Variable is of double array type |
FILEDeprecated. Variable is of file type |
FILE_ARRAYDeprecated. Variable is of file array type |
INTEGERDeprecated. Variable is of integer type |
INTEGER_ARRAYDeprecated. Variable is of integer array type |
STRINGDeprecated. Variable is of string type |
STRING_ARRAYDeprecated. Variable is of string array type |
UNSPECIFIEDDeprecated. Variable type is unspecified |
Method Summary
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString()Deprecated. Get value of enumeration |
static VariableDataType |
valueOf(java.lang.String name)Deprecated. Returns the enum constant of this type with the specified name. |
static VariableDataType[] |
values()Deprecated. 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, valueOf
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
Enum Constant Detail
UNSPECIFIED
public static final VariableDataType UNSPECIFIED
Deprecated.
Variable type is unspecified
BOOLEAN
public static final VariableDataType BOOLEAN
Deprecated.
Variable is of boolean type
STRING
public static final VariableDataType STRING
Deprecated.
Variable is of string type
DOUBLE
public static final VariableDataType DOUBLE
Deprecated.
Variable is of double type
INTEGER
public static final VariableDataType INTEGER
Deprecated.
Variable is of integer type
FILE
public static final VariableDataType FILE
Deprecated.
Variable is of file type
BOOLEAN_ARRAY
public static final VariableDataType BOOLEAN_ARRAY
Deprecated.
Variable is of boolean array type
STRING_ARRAY
public static final VariableDataType STRING_ARRAY
Deprecated.
Variable is of string array type
DOUBLE_ARRAY
public static final VariableDataType DOUBLE_ARRAY
Deprecated.
Variable is of double array type
INTEGER_ARRAY
public static final VariableDataType INTEGER_ARRAY
Deprecated.
Variable is of integer array type
FILE_ARRAY
public static final VariableDataType FILE_ARRAY
Deprecated.
Variable is of file array type
Method Detail
values
public static VariableDataType[] values()
Deprecated.
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 (VariableDataType c : VariableDataType.values())
System.out.println(c);
Returns:
- an array containing the constants of this enum type, in the order they are declared
valueOf
public static VariableDataType valueOf(java.lang.String name)
Deprecated.
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
toString
public java.lang.String toString()
Deprecated.
Get value of enumeration
Overrides:
toStringin classjava.lang.Enum<variabledatatype>
Returns:
- enumeration value