Package crosby.binary
Interface Osmformat.DenseNodesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Osmformat.DenseNodes
,Osmformat.DenseNodes.Builder
- Enclosing class:
- Osmformat
public static interface Osmformat.DenseNodesOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Osmformat.DenseInfo
getDenseinfo()
optional .OSMPBF.DenseInfo denseinfo = 5;
Osmformat.DenseInfoOrBuilder
getDenseinfoOrBuilder()
optional .OSMPBF.DenseInfo denseinfo = 5;
long
getId(int index)
DELTA codedint
getIdCount()
DELTA codedjava.util.List<java.lang.Long>
getIdList()
DELTA codedint
getKeysVals(int index)
Special packing of keys and vals into one array.int
getKeysValsCount()
Special packing of keys and vals into one array.java.util.List<java.lang.Integer>
getKeysValsList()
Special packing of keys and vals into one array.long
getLat(int index)
DELTA codedint
getLatCount()
DELTA codedjava.util.List<java.lang.Long>
getLatList()
DELTA codedlong
getLon(int index)
DELTA codedint
getLonCount()
DELTA codedjava.util.List<java.lang.Long>
getLonList()
DELTA codedboolean
hasDenseinfo()
optional .OSMPBF.DenseInfo denseinfo = 5;
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIdList
java.util.List<java.lang.Long> getIdList()
DELTA coded
repeated sint64 id = 1 [packed = true];
- Returns:
- A list containing the id.
-
getIdCount
int getIdCount()
DELTA coded
repeated sint64 id = 1 [packed = true];
- Returns:
- The count of id.
-
getId
long getId(int index)
DELTA coded
repeated sint64 id = 1 [packed = true];
- Parameters:
index
- The index of the element to return.- Returns:
- The id at the given index.
-
hasDenseinfo
boolean hasDenseinfo()
optional .OSMPBF.DenseInfo denseinfo = 5;
- Returns:
- Whether the denseinfo field is set.
-
getDenseinfo
Osmformat.DenseInfo getDenseinfo()
optional .OSMPBF.DenseInfo denseinfo = 5;
- Returns:
- The denseinfo.
-
getDenseinfoOrBuilder
Osmformat.DenseInfoOrBuilder getDenseinfoOrBuilder()
optional .OSMPBF.DenseInfo denseinfo = 5;
-
getLatList
java.util.List<java.lang.Long> getLatList()
DELTA coded
repeated sint64 lat = 8 [packed = true];
- Returns:
- A list containing the lat.
-
getLatCount
int getLatCount()
DELTA coded
repeated sint64 lat = 8 [packed = true];
- Returns:
- The count of lat.
-
getLat
long getLat(int index)
DELTA coded
repeated sint64 lat = 8 [packed = true];
- Parameters:
index
- The index of the element to return.- Returns:
- The lat at the given index.
-
getLonList
java.util.List<java.lang.Long> getLonList()
DELTA coded
repeated sint64 lon = 9 [packed = true];
- Returns:
- A list containing the lon.
-
getLonCount
int getLonCount()
DELTA coded
repeated sint64 lon = 9 [packed = true];
- Returns:
- The count of lon.
-
getLon
long getLon(int index)
DELTA coded
repeated sint64 lon = 9 [packed = true];
- Parameters:
index
- The index of the element to return.- Returns:
- The lon at the given index.
-
getKeysValsList
java.util.List<java.lang.Integer> getKeysValsList()
Special packing of keys and vals into one array. May be empty if all nodes in this block are tagless.
repeated int32 keys_vals = 10 [packed = true];
- Returns:
- A list containing the keysVals.
-
getKeysValsCount
int getKeysValsCount()
Special packing of keys and vals into one array. May be empty if all nodes in this block are tagless.
repeated int32 keys_vals = 10 [packed = true];
- Returns:
- The count of keysVals.
-
getKeysVals
int getKeysVals(int index)
Special packing of keys and vals into one array. May be empty if all nodes in this block are tagless.
repeated int32 keys_vals = 10 [packed = true];
- Parameters:
index
- The index of the element to return.- Returns:
- The keysVals at the given index.
-
-