Interface Fileformat.BlobOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Fileformat.Blob,Fileformat.Blob.Builder
- Enclosing class:
- Fileformat
public static interface Fileformat.BlobOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description com.google.protobuf.ByteStringgetLzmaData()PROPOSED feature for LZMA compressed data.com.google.protobuf.ByteStringgetOBSOLETEBzip2Data()Deprecated.com.google.protobuf.ByteStringgetRaw()No compressionintgetRawSize()When compressed, the uncompressed sizecom.google.protobuf.ByteStringgetZlibData()Possible compressed versions of the data.booleanhasLzmaData()PROPOSED feature for LZMA compressed data.booleanhasOBSOLETEBzip2Data()Deprecated.booleanhasRaw()No compressionbooleanhasRawSize()When compressed, the uncompressed sizebooleanhasZlibData()Possible compressed versions of the data.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasRaw
boolean hasRaw()
No compression
optional bytes raw = 1;- Returns:
- Whether the raw field is set.
-
getRaw
com.google.protobuf.ByteString getRaw()
No compression
optional bytes raw = 1;- Returns:
- The raw.
-
hasRawSize
boolean hasRawSize()
When compressed, the uncompressed size
optional int32 raw_size = 2;- Returns:
- Whether the rawSize field is set.
-
getRawSize
int getRawSize()
When compressed, the uncompressed size
optional int32 raw_size = 2;- Returns:
- The rawSize.
-
hasZlibData
boolean hasZlibData()
Possible compressed versions of the data.
optional bytes zlib_data = 3;- Returns:
- Whether the zlibData field is set.
-
getZlibData
com.google.protobuf.ByteString getZlibData()
Possible compressed versions of the data.
optional bytes zlib_data = 3;- Returns:
- The zlibData.
-
hasLzmaData
boolean hasLzmaData()
PROPOSED feature for LZMA compressed data. SUPPORT IS NOT REQUIRED.
optional bytes lzma_data = 4;- Returns:
- Whether the lzmaData field is set.
-
getLzmaData
com.google.protobuf.ByteString getLzmaData()
PROPOSED feature for LZMA compressed data. SUPPORT IS NOT REQUIRED.
optional bytes lzma_data = 4;- Returns:
- The lzmaData.
-
hasOBSOLETEBzip2Data
@Deprecated boolean hasOBSOLETEBzip2Data()
Deprecated.Formerly used for bzip2 compressed data. Depreciated in 2010.
optional bytes OBSOLETE_bzip2_data = 5 [deprecated = true];- Returns:
- Whether the oBSOLETEBzip2Data field is set.
-
getOBSOLETEBzip2Data
@Deprecated com.google.protobuf.ByteString getOBSOLETEBzip2Data()
Deprecated.Formerly used for bzip2 compressed data. Depreciated in 2010.
optional bytes OBSOLETE_bzip2_data = 5 [deprecated = true];- Returns:
- The oBSOLETEBzip2Data.
-
-