Enum TelemetryField
- java.lang.Object
-
- java.lang.Enum<TelemetryField>
-
- net.snowflake.client.jdbc.telemetry.TelemetryField
-
- All Implemented Interfaces:
Serializable
,Comparable<TelemetryField>
public enum TelemetryField extends Enum<TelemetryField>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static TelemetryField
valueOf(String name)
Returns the enum constant of this type with the specified name.static TelemetryField[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TYPE
public static final TelemetryField TYPE
-
VALUE
public static final TelemetryField VALUE
-
DRIVER_TYPE
public static final TelemetryField DRIVER_TYPE
-
DRIVER_VERSION
public static final TelemetryField DRIVER_VERSION
-
QUERY_ID
public static final TelemetryField QUERY_ID
-
SQL_STATE
public static final TelemetryField SQL_STATE
-
ERROR_NUMBER
public static final TelemetryField ERROR_NUMBER
-
ERROR_MESSAGE
public static final TelemetryField ERROR_MESSAGE
-
REASON
public static final TelemetryField REASON
-
TIME_CONSUME_FIRST_RESULT
public static final TelemetryField TIME_CONSUME_FIRST_RESULT
-
TIME_CONSUME_LAST_RESULT
public static final TelemetryField TIME_CONSUME_LAST_RESULT
-
TIME_WAITING_FOR_CHUNKS
public static final TelemetryField TIME_WAITING_FOR_CHUNKS
-
TIME_DOWNLOADING_CHUNKS
public static final TelemetryField TIME_DOWNLOADING_CHUNKS
-
TIME_PARSING_CHUNKS
public static final TelemetryField TIME_PARSING_CHUNKS
-
FAILED_BIND_SERIALIZATION
public static final TelemetryField FAILED_BIND_SERIALIZATION
-
FAILED_BIND_UPLOAD
public static final TelemetryField FAILED_BIND_UPLOAD
-
FAILED_BIND_OTHER
public static final TelemetryField FAILED_BIND_OTHER
-
SQL_EXCEPTION
public static final TelemetryField SQL_EXCEPTION
-
METADATA_METRICS
public static final TelemetryField METADATA_METRICS
-
HTTP_EXCEPTION
public static final TelemetryField HTTP_EXCEPTION
-
OCSP_EXCEPTION
public static final TelemetryField OCSP_EXCEPTION
-
-
Field Detail
-
field
public final String field
-
-
Method Detail
-
values
public static TelemetryField[] 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 (TelemetryField c : TelemetryField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TelemetryField 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<TelemetryField>
-
-