Enum Class VsonTypes

java.lang.Object
java.lang.Enum<VsonTypes>
com.linkedin.venice.schema.vson.VsonTypes
All Implemented Interfaces:
Serializable, Comparable<VsonTypes>, Constable

@Deprecated public enum VsonTypes extends Enum<VsonTypes>
Deprecated.
  • Enum Constant Details

    • BOOLEAN

      public static final VsonTypes BOOLEAN
      Deprecated.
    • STRING

      public static final VsonTypes STRING
      Deprecated.
    • INT8

      public static final VsonTypes INT8
      Deprecated.
    • INT16

      public static final VsonTypes INT16
      Deprecated.
    • INT32

      public static final VsonTypes INT32
      Deprecated.
    • INT64

      public static final VsonTypes INT64
      Deprecated.
    • FLOAT32

      public static final VsonTypes FLOAT32
      Deprecated.
    • FLOAT64

      public static final VsonTypes FLOAT64
      Deprecated.
    • BYTES

      public static final VsonTypes BYTES
      Deprecated.
    • DATE

      public static final VsonTypes DATE
      Deprecated.
  • Method Details

    • values

      public static VsonTypes[] values()
      Deprecated.
      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 VsonTypes valueOf(String name)
      Deprecated.
      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
    • toDisplay

      public String toDisplay()
      Deprecated.
    • fromDisplay

      public static VsonTypes fromDisplay(String name)
      Deprecated.