Package org.netxms.client.constants
Enum DataType
- java.lang.Object
-
- java.lang.Enum<DataType>
-
- org.netxms.client.constants.DataType
-
- All Implemented Interfaces:
Serializable,Comparable<DataType>
public enum DataType extends Enum<DataType>
Data types for DCI
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DataTypegetByValue(int value)Get enum element by integer valuestatic DataTypegetTypeForCompare(DataType t1, DataType t2)Get type suitable for comparing two values of given typesintgetValue()Get integer valuebooleanis64bit()Returns true if this type is 64 bitbooleanisSigned()Returns true if this type is signedstatic DataTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DataType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INT32
public static final DataType INT32
-
UINT32
public static final DataType UINT32
-
INT64
public static final DataType INT64
-
UINT64
public static final DataType UINT64
-
STRING
public static final DataType STRING
-
FLOAT
public static final DataType FLOAT
-
NULL
public static final DataType NULL
-
COUNTER32
public static final DataType COUNTER32
-
COUNTER64
public static final DataType COUNTER64
-
-
Method Detail
-
values
public static DataType[] 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 (DataType c : DataType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataType 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
-
getValue
public int getValue()
Get integer value- Returns:
- integer value
-
isSigned
public boolean isSigned()
Returns true if this type is signed- Returns:
- true if this type is signed
-
is64bit
public boolean is64bit()
Returns true if this type is 64 bit- Returns:
- true if this type is 64 bit
-
getByValue
public static DataType getByValue(int value)
Get enum element by integer value- Parameters:
value- integer value- Returns:
- enum element corresponding to given integer value or fall-back element for invalid value
-
-