Package com.linkedin.venice.schema.vson
Enum VsonTypes
- java.lang.Object
-
- java.lang.Enum<VsonTypes>
-
- com.linkedin.venice.schema.vson.VsonTypes
-
-
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.
-
-
-
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 namejava.lang.NullPointerException
- if the argument is null
-
toDisplay
public java.lang.String toDisplay()
Deprecated.
-
fromDisplay
public static VsonTypes fromDisplay(java.lang.String name)
Deprecated.
-
-