Enum VsonTypes

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<VsonTypes>

    @Deprecated
    public enum VsonTypes
    extends java.lang.Enum<VsonTypes>
    Deprecated.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      BOOLEAN
      Deprecated.
       
      BYTES
      Deprecated.
       
      DATE
      Deprecated.
       
      FLOAT32
      Deprecated.
       
      FLOAT64
      Deprecated.
       
      INT16
      Deprecated.
       
      INT32
      Deprecated.
       
      INT64
      Deprecated.
       
      INT8
      Deprecated.
       
      STRING
      Deprecated.
       
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      static VsonTypes fromDisplay​(java.lang.String name)
      Deprecated.
       
      java.lang.String toDisplay()
      Deprecated.
       
      static VsonTypes valueOf​(java.lang.String name)
      Deprecated.
      Returns the enum constant of this type with the specified name.
      static VsonTypes[] 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, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

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

      • values

        public static VsonTypes[] 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 (VsonTypes c : VsonTypes.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static VsonTypes 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 name
        java.lang.NullPointerException - if the argument is null
      • toDisplay

        public java.lang.String toDisplay()
        Deprecated.
      • fromDisplay

        public static VsonTypes fromDisplay​(java.lang.String name)
        Deprecated.