Enum Class DataType

java.lang.Object
java.lang.Enum<DataType>
org.netxms.client.constants.DataType
All Implemented Interfaces:
Serializable, Comparable<DataType>, Constable

public enum DataType extends Enum<DataType>
Data types for DCI
  • Enum Constant Details

    • 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 Details

    • values

      public static DataType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static DataType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - 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
    • getTypeForCompare

      public static DataType getTypeForCompare(DataType t1, DataType t2)
      Get type suitable for comparing two values of given types
      Parameters:
      t1 - Type 1
      t2 - Type 2
      Returns:
      resulting type