Interface BlocksProtos.ChunkProtoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BlocksProtos.ChunkProto
,BlocksProtos.ChunkProto.Builder
- Enclosing class:
- BlocksProtos
public static interface BlocksProtos.ChunkProtoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getBlocks(int index)
the block arraycom.google.protobuf.ByteString
getBlocksBytes(int index)
the block arrayint
getBlocksCount()
the block arrayjava.util.List<java.lang.String>
getBlocksList()
the block arrayint
getLocation(int index)
the location of the chunk, represented as an array of 3 integers.int
getLocationCount()
the location of the chunk, represented as an array of 3 integers.java.util.List<java.lang.Integer>
getLocationList()
the location of the chunk, represented as an array of 3 integers.int
getSize(int index)
the size of the chunk, represented as an array of 3 integers.int
getSizeCount()
the size of the chunk, represented as an array of 3 integers.java.util.List<java.lang.Integer>
getSizeList()
the size of the chunk, represented as an array of 3 integers.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLocationList
java.util.List<java.lang.Integer> getLocationList()
the location of the chunk, represented as an array of 3 integers. Where location[0] = x, location[1] = y, location[2] = z
repeated sint32 location = 1 [packed = true];
-
getLocationCount
int getLocationCount()
the location of the chunk, represented as an array of 3 integers. Where location[0] = x, location[1] = y, location[2] = z
repeated sint32 location = 1 [packed = true];
-
getLocation
int getLocation(int index)
the location of the chunk, represented as an array of 3 integers. Where location[0] = x, location[1] = y, location[2] = z
repeated sint32 location = 1 [packed = true];
-
getSizeList
java.util.List<java.lang.Integer> getSizeList()
the size of the chunk, represented as an array of 3 integers. where size[0] = x, size[1] = y, size[2] = z
repeated sint32 size = 2 [packed = true];
-
getSizeCount
int getSizeCount()
the size of the chunk, represented as an array of 3 integers. where size[0] = x, size[1] = y, size[2] = z
repeated sint32 size = 2 [packed = true];
-
getSize
int getSize(int index)
the size of the chunk, represented as an array of 3 integers. where size[0] = x, size[1] = y, size[2] = z
repeated sint32 size = 2 [packed = true];
-
getBlocksList
java.util.List<java.lang.String> getBlocksList()
the block array
repeated string blocks = 3;
-
getBlocksCount
int getBlocksCount()
the block array
repeated string blocks = 3;
-
getBlocks
java.lang.String getBlocks(int index)
the block array
repeated string blocks = 3;
-
getBlocksBytes
com.google.protobuf.ByteString getBlocksBytes(int index)
the block array
repeated string blocks = 3;
-
-