Interface AdxExt.NativeRequestExt.MultiAdsCellInfoOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int getCellColumn()
      The column this cell belongs to.
      int getCellRow()
      The row this cell belongs to.
      int getGridColumns()
      Total number of columns in the grid for this cell.
      long getGridId()
      Unique ID for the grid.
      int getGridRows()
      Total number of rows in the grid for this cell.
      boolean hasCellColumn()
      The column this cell belongs to.
      boolean hasCellRow()
      The row this cell belongs to.
      boolean hasGridColumns()
      Total number of columns in the grid for this cell.
      boolean hasGridId()
      Unique ID for the grid.
      boolean hasGridRows()
      Total number of rows in the grid for this cell.
      • 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

      • hasCellRow

        boolean hasCellRow()
         The row this cell belongs to.
         
        optional int32 cell_row = 1;
        Returns:
        Whether the cellRow field is set.
      • getCellRow

        int getCellRow()
         The row this cell belongs to.
         
        optional int32 cell_row = 1;
        Returns:
        The cellRow.
      • hasCellColumn

        boolean hasCellColumn()
         The column this cell belongs to.
         
        optional int32 cell_column = 2;
        Returns:
        Whether the cellColumn field is set.
      • getCellColumn

        int getCellColumn()
         The column this cell belongs to.
         
        optional int32 cell_column = 2;
        Returns:
        The cellColumn.
      • hasGridRows

        boolean hasGridRows()
         Total number of rows in the grid for this cell.
         
        optional int32 grid_rows = 3;
        Returns:
        Whether the gridRows field is set.
      • getGridRows

        int getGridRows()
         Total number of rows in the grid for this cell.
         
        optional int32 grid_rows = 3;
        Returns:
        The gridRows.
      • hasGridColumns

        boolean hasGridColumns()
         Total number of columns in the grid for this cell.
         
        optional int32 grid_columns = 4;
        Returns:
        Whether the gridColumns field is set.
      • getGridColumns

        int getGridColumns()
         Total number of columns in the grid for this cell.
         
        optional int32 grid_columns = 4;
        Returns:
        The gridColumns.
      • hasGridId

        boolean hasGridId()
         Unique ID for the grid. It identifies a single grid on a single
         instance of a page and is the same for all cells within that grid. If a
         page has multiple grids, the grid_id for other grids would be
         different. It would also be different for the same grid in two
         different pageviews.
         This is distinct from the google_query_id, which will differ for every
         request for a cell in the grid.
         
        optional int64 grid_id = 5;
        Returns:
        Whether the gridId field is set.
      • getGridId

        long getGridId()
         Unique ID for the grid. It identifies a single grid on a single
         instance of a page and is the same for all cells within that grid. If a
         page has multiple grids, the grid_id for other grids would be
         different. It would also be different for the same grid in two
         different pageviews.
         This is distinct from the google_query_id, which will differ for every
         request for a cell in the grid.
         
        optional int64 grid_id = 5;
        Returns:
        The gridId.