Class BlobHeader
- java.lang.Object
-
- org.openstreetmap.josm.data.osm.pbf.BlobHeader
-
public final class BlobHeader extends java.lang.Object
A "BlobHeader" which contains metadata for aBlob
.- Since:
- 18695
-
-
Constructor Summary
Constructors Constructor Description BlobHeader(java.lang.String type, byte[] indexData, int dataSize)
Create a newBlobHeader
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
dataSize()
Get the blob sizebyte[]
indexData()
Get the blob metadatajava.lang.String
type()
Get the blob type
-
-
-
Constructor Detail
-
BlobHeader
public BlobHeader(@Nonnull java.lang.String type, @Nullable byte[] indexData, int dataSize)
Create a newBlobHeader
- Parameters:
type
- The type of data in the blobindexData
- The metadata for the blobdataSize
- The size of the blob
-
-