Package org.yamcs.protobuf
Interface BucketInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BucketInfo,BucketInfo.Builder
public interface BucketInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Bucket name.com.google.protobuf.ByteStringgetNameBytes()Bucket name.intgetNumObjects()Number of objects in the bucketlonggetSize()Total size in bytes of all objects in the bucket (metadata is not counted)booleanhasName()Bucket name.booleanhasNumObjects()Number of objects in the bucketbooleanhasSize()Total size in bytes of all objects in the bucket (metadata is not counted)-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasName
boolean hasName()
Bucket name.
optional string name = 1;
-
getName
String getName()
Bucket name.
optional string name = 1;
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Bucket name.
optional string name = 1;
-
hasSize
boolean hasSize()
Total size in bytes of all objects in the bucket (metadata is not counted)
optional uint64 size = 2;
-
getSize
long getSize()
Total size in bytes of all objects in the bucket (metadata is not counted)
optional uint64 size = 2;
-
hasNumObjects
boolean hasNumObjects()
Number of objects in the bucket
optional uint32 numObjects = 3;
-
getNumObjects
int getNumObjects()
Number of objects in the bucket
optional uint32 numObjects = 3;
-
-