Package com.google.cloud.hadoop.gcsio
Enum GoogleCloudStorageTracingFields
- java.lang.Object
-
- java.lang.Enum<GoogleCloudStorageTracingFields>
-
- com.google.cloud.hadoop.gcsio.GoogleCloudStorageTracingFields
-
- All Implemented Interfaces:
Serializable,Comparable<GoogleCloudStorageTracingFields>
public enum GoogleCloudStorageTracingFields extends Enum<GoogleCloudStorageTracingFields>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BYTES_READCONTENT_LENGTHFINALIZE_WRITEIDEMPOTENCY_TOKENPERSISTED_SIZEREAD_LIMITREAD_OFFSETREQUEST_COUNTERREQUEST_START_OFFSETRESOURCERESPONSE_COUNTERRPC_METHODSTATUSSTREAM_OPERATIONUPLOAD_IDWRITE_OFFSET
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GoogleCloudStorageTracingFieldsvalueOf(String name)Returns the enum constant of this type with the specified name.static GoogleCloudStorageTracingFields[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RPC_METHOD
public static final GoogleCloudStorageTracingFields RPC_METHOD
-
IDEMPOTENCY_TOKEN
public static final GoogleCloudStorageTracingFields IDEMPOTENCY_TOKEN
-
REQUEST_COUNTER
public static final GoogleCloudStorageTracingFields REQUEST_COUNTER
-
RESPONSE_COUNTER
public static final GoogleCloudStorageTracingFields RESPONSE_COUNTER
-
RESOURCE
public static final GoogleCloudStorageTracingFields RESOURCE
-
UPLOAD_ID
public static final GoogleCloudStorageTracingFields UPLOAD_ID
-
WRITE_OFFSET
public static final GoogleCloudStorageTracingFields WRITE_OFFSET
-
FINALIZE_WRITE
public static final GoogleCloudStorageTracingFields FINALIZE_WRITE
-
CONTENT_LENGTH
public static final GoogleCloudStorageTracingFields CONTENT_LENGTH
-
PERSISTED_SIZE
public static final GoogleCloudStorageTracingFields PERSISTED_SIZE
-
READ_OFFSET
public static final GoogleCloudStorageTracingFields READ_OFFSET
-
READ_LIMIT
public static final GoogleCloudStorageTracingFields READ_LIMIT
-
REQUEST_START_OFFSET
public static final GoogleCloudStorageTracingFields REQUEST_START_OFFSET
-
BYTES_READ
public static final GoogleCloudStorageTracingFields BYTES_READ
-
STREAM_OPERATION
public static final GoogleCloudStorageTracingFields STREAM_OPERATION
-
STATUS
public static final GoogleCloudStorageTracingFields STATUS
-
-
Field Detail
-
name
public final String name
-
-
Method Detail
-
values
public static GoogleCloudStorageTracingFields[] 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 (GoogleCloudStorageTracingFields c : GoogleCloudStorageTracingFields.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GoogleCloudStorageTracingFields 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
-
-