Interface JsonFileFormatOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
JsonFileFormat,JsonFileFormat.Builder
public interface JsonFileFormatOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JsonFileFormat.JsonCompressiongetCompression()Compression of the loaded JSON file.intgetCompressionValue()Compression of the loaded JSON file.SchemaFileFormatgetSchemaFileFormat()The schema file format along JSON data files.intgetSchemaFileFormatValue()The schema file format along JSON data files.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSchemaFileFormatValue
int getSchemaFileFormatValue()
The schema file format along JSON data files.
.google.cloud.datastream.v1alpha1.SchemaFileFormat schema_file_format = 1;- Returns:
- The enum numeric value on the wire for schemaFileFormat.
-
getSchemaFileFormat
SchemaFileFormat getSchemaFileFormat()
The schema file format along JSON data files.
.google.cloud.datastream.v1alpha1.SchemaFileFormat schema_file_format = 1;- Returns:
- The schemaFileFormat.
-
getCompressionValue
int getCompressionValue()
Compression of the loaded JSON file.
.google.cloud.datastream.v1alpha1.JsonFileFormat.JsonCompression compression = 2;- Returns:
- The enum numeric value on the wire for compression.
-
getCompression
JsonFileFormat.JsonCompression getCompression()
Compression of the loaded JSON file.
.google.cloud.datastream.v1alpha1.JsonFileFormat.JsonCompression compression = 2;- Returns:
- The compression.
-
-