Package com.google.doubleclick
Interface AdxExt.NativeRequestExt.MultiAdsCellInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AdxExt.NativeRequestExt.MultiAdsCellInfo,AdxExt.NativeRequestExt.MultiAdsCellInfo.Builder
- Enclosing class:
- AdxExt.NativeRequestExt
public static interface AdxExt.NativeRequestExt.MultiAdsCellInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetCellColumn()The column this cell belongs to.intgetCellRow()The row this cell belongs to.intgetGridColumns()Total number of columns in the grid for this cell.longgetGridId()Unique ID for the grid.intgetGridRows()Total number of rows in the grid for this cell.booleanhasCellColumn()The column this cell belongs to.booleanhasCellRow()The row this cell belongs to.booleanhasGridColumns()Total number of columns in the grid for this cell.booleanhasGridId()Unique ID for the grid.booleanhasGridRows()Total number of rows in the grid for this cell.-
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.
-
-