Interface ModifyColumnFamiliesRequest.ModificationOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      ColumnFamily getCreate()
      Create a new column family with the specified schema, or fail if one already exists with the given ID.
      ColumnFamilyOrBuilder getCreateOrBuilder()
      Create a new column family with the specified schema, or fail if one already exists with the given ID.
      boolean getDrop()
      Drop (delete) the column family with the given ID, or fail if no such family exists.
      String getId()
      The ID of the column family to be modified.
      com.google.protobuf.ByteString getIdBytes()
      The ID of the column family to be modified.
      ModifyColumnFamiliesRequest.Modification.ModCase getModCase()  
      ColumnFamily getUpdate()
      Update an existing column family to the specified schema, or fail if no column family exists with the given ID.
      ColumnFamilyOrBuilder getUpdateOrBuilder()
      Update an existing column family to the specified schema, or fail if no column family exists with the given ID.
      boolean hasCreate()
      Create a new column family with the specified schema, or fail if one already exists with the given ID.
      boolean hasDrop()
      Drop (delete) the column family with the given ID, or fail if no such family exists.
      boolean hasUpdate()
      Update an existing column family to the specified schema, or fail if no column family exists with the given ID.
      • 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

      • getId

        String getId()
         The ID of the column family to be modified.
         
        string id = 1;
        Returns:
        The id.
      • getIdBytes

        com.google.protobuf.ByteString getIdBytes()
         The ID of the column family to be modified.
         
        string id = 1;
        Returns:
        The bytes for id.
      • hasCreate

        boolean hasCreate()
         Create a new column family with the specified schema, or fail if
         one already exists with the given ID.
         
        .google.bigtable.admin.v2.ColumnFamily create = 2;
        Returns:
        Whether the create field is set.
      • getCreate

        ColumnFamily getCreate()
         Create a new column family with the specified schema, or fail if
         one already exists with the given ID.
         
        .google.bigtable.admin.v2.ColumnFamily create = 2;
        Returns:
        The create.
      • getCreateOrBuilder

        ColumnFamilyOrBuilder getCreateOrBuilder()
         Create a new column family with the specified schema, or fail if
         one already exists with the given ID.
         
        .google.bigtable.admin.v2.ColumnFamily create = 2;
      • hasUpdate

        boolean hasUpdate()
         Update an existing column family to the specified schema, or fail
         if no column family exists with the given ID.
         
        .google.bigtable.admin.v2.ColumnFamily update = 3;
        Returns:
        Whether the update field is set.
      • getUpdate

        ColumnFamily getUpdate()
         Update an existing column family to the specified schema, or fail
         if no column family exists with the given ID.
         
        .google.bigtable.admin.v2.ColumnFamily update = 3;
        Returns:
        The update.
      • getUpdateOrBuilder

        ColumnFamilyOrBuilder getUpdateOrBuilder()
         Update an existing column family to the specified schema, or fail
         if no column family exists with the given ID.
         
        .google.bigtable.admin.v2.ColumnFamily update = 3;
      • hasDrop

        boolean hasDrop()
         Drop (delete) the column family with the given ID, or fail if no such
         family exists.
         
        bool drop = 4;
        Returns:
        Whether the drop field is set.
      • getDrop

        boolean getDrop()
         Drop (delete) the column family with the given ID, or fail if no such
         family exists.
         
        bool drop = 4;
        Returns:
        The drop.