Enum DriverVolumeOperationType
- java.lang.Object
-
- java.lang.Enum<DriverVolumeOperationType>
-
- com.databricks.jdbc.model.telemetry.enums.DriverVolumeOperationType
-
- All Implemented Interfaces:
Serializable,Comparable<DriverVolumeOperationType>
public enum DriverVolumeOperationType extends Enum<DriverVolumeOperationType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DriverVolumeOperationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DriverVolumeOperationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TYPE_UNSPECIFIED
public static final DriverVolumeOperationType TYPE_UNSPECIFIED
-
PUT
public static final DriverVolumeOperationType PUT
-
GET
public static final DriverVolumeOperationType GET
-
DELETE
public static final DriverVolumeOperationType DELETE
-
LIST
public static final DriverVolumeOperationType LIST
-
QUERY
public static final DriverVolumeOperationType QUERY
-
-
Method Detail
-
values
public static DriverVolumeOperationType[] values()
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 (DriverVolumeOperationType c : DriverVolumeOperationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DriverVolumeOperationType valueOf(String name)
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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-