Package cern.nxcals.api.extraction.thin
Interface AvroDataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AvroData,AvroData.Builder
public interface AvroDataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteStringgetAvroBytes()Records encoded as avro bytes (file encoding).java.lang.StringgetAvroSchema()Avro schemacom.google.protobuf.ByteStringgetAvroSchemaBytes()Avro schemalonggetRecordCount()Records count-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAvroSchema
java.lang.String getAvroSchema()
Avro schema
string avro_schema = 1;- Returns:
- The avroSchema.
-
getAvroSchemaBytes
com.google.protobuf.ByteString getAvroSchemaBytes()
Avro schema
string avro_schema = 1;- Returns:
- The bytes for avroSchema.
-
getAvroBytes
com.google.protobuf.ByteString getAvroBytes()
Records encoded as avro bytes (file encoding).
bytes avro_bytes = 2;- Returns:
- The avroBytes.
-
getRecordCount
long getRecordCount()
Records count
int64 record_count = 3;- Returns:
- The recordCount.
-
-