Enum Class DType

java.lang.Object
java.lang.Enum<DType>
com.library.numj.enums.DType
All Implemented Interfaces:
Serializable, Comparable<DType>, java.lang.constant.Constable

public enum DType extends Enum<DType>
  • Enum Constant Details

    • FLOAT32

      public static final DType FLOAT32
    • FLOAT64

      public static final DType FLOAT64
    • UINT8

      public static final DType UINT8
    • UINT16

      public static final DType UINT16
    • UINT32

      public static final DType UINT32
    • UINT64

      public static final DType UINT64
  • Method Details

    • values

      public static DType[] 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 DType 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