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
      String getName()
      Bucket name.
      com.google.protobuf.ByteString getNameBytes()
      Bucket name.
      int getNumObjects()
      Number of objects in the bucket
      long getSize()
      Total size in bytes of all objects in the bucket (metadata is not counted)
      boolean hasName()
      Bucket name.
      boolean hasNumObjects()
      Number of objects in the bucket
      boolean hasSize()
      Total size in bytes of all objects in the bucket (metadata is not counted)
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • 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;