Package com.google.apps.card.v1
Interface Columns.ColumnOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Columns.Column
,Columns.Column.Builder
- Enclosing class:
- Columns
public static interface Columns.ColumnOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Widget.HorizontalAlignment
getHorizontalAlignment()
Specifies whether widgets align to the left, right, or center of a column.int
getHorizontalAlignmentValue()
Specifies whether widgets align to the left, right, or center of a column.Columns.Column.HorizontalSizeStyle
getHorizontalSizeStyle()
Specifies how a column fills the width of the card.int
getHorizontalSizeStyleValue()
Specifies how a column fills the width of the card.Columns.Column.VerticalAlignment
getVerticalAlignment()
Specifies whether widgets align to the top, bottom, or center of a column.int
getVerticalAlignmentValue()
Specifies whether widgets align to the top, bottom, or center of a column.Columns.Column.Widgets
getWidgets(int index)
An array of widgets included in a column.int
getWidgetsCount()
An array of widgets included in a column.java.util.List<Columns.Column.Widgets>
getWidgetsList()
An array of widgets included in a column.Columns.Column.WidgetsOrBuilder
getWidgetsOrBuilder(int index)
An array of widgets included in a column.java.util.List<? extends Columns.Column.WidgetsOrBuilder>
getWidgetsOrBuilderList()
An array of widgets included in a column.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getHorizontalSizeStyleValue
int getHorizontalSizeStyleValue()
Specifies how a column fills the width of the card.
.google.apps.card.v1.Columns.Column.HorizontalSizeStyle horizontal_size_style = 1;
- Returns:
- The enum numeric value on the wire for horizontalSizeStyle.
-
getHorizontalSizeStyle
Columns.Column.HorizontalSizeStyle getHorizontalSizeStyle()
Specifies how a column fills the width of the card.
.google.apps.card.v1.Columns.Column.HorizontalSizeStyle horizontal_size_style = 1;
- Returns:
- The horizontalSizeStyle.
-
getHorizontalAlignmentValue
int getHorizontalAlignmentValue()
Specifies whether widgets align to the left, right, or center of a column.
.google.apps.card.v1.Widget.HorizontalAlignment horizontal_alignment = 2;
- Returns:
- The enum numeric value on the wire for horizontalAlignment.
-
getHorizontalAlignment
Widget.HorizontalAlignment getHorizontalAlignment()
Specifies whether widgets align to the left, right, or center of a column.
.google.apps.card.v1.Widget.HorizontalAlignment horizontal_alignment = 2;
- Returns:
- The horizontalAlignment.
-
getVerticalAlignmentValue
int getVerticalAlignmentValue()
Specifies whether widgets align to the top, bottom, or center of a column.
.google.apps.card.v1.Columns.Column.VerticalAlignment vertical_alignment = 3;
- Returns:
- The enum numeric value on the wire for verticalAlignment.
-
getVerticalAlignment
Columns.Column.VerticalAlignment getVerticalAlignment()
Specifies whether widgets align to the top, bottom, or center of a column.
.google.apps.card.v1.Columns.Column.VerticalAlignment vertical_alignment = 3;
- Returns:
- The verticalAlignment.
-
getWidgetsList
java.util.List<Columns.Column.Widgets> getWidgetsList()
An array of widgets included in a column. Widgets appear in the order that they are specified.
repeated .google.apps.card.v1.Columns.Column.Widgets widgets = 4;
-
getWidgets
Columns.Column.Widgets getWidgets(int index)
An array of widgets included in a column. Widgets appear in the order that they are specified.
repeated .google.apps.card.v1.Columns.Column.Widgets widgets = 4;
-
getWidgetsCount
int getWidgetsCount()
An array of widgets included in a column. Widgets appear in the order that they are specified.
repeated .google.apps.card.v1.Columns.Column.Widgets widgets = 4;
-
getWidgetsOrBuilderList
java.util.List<? extends Columns.Column.WidgetsOrBuilder> getWidgetsOrBuilderList()
An array of widgets included in a column. Widgets appear in the order that they are specified.
repeated .google.apps.card.v1.Columns.Column.Widgets widgets = 4;
-
getWidgetsOrBuilder
Columns.Column.WidgetsOrBuilder getWidgetsOrBuilder(int index)
An array of widgets included in a column. Widgets appear in the order that they are specified.
repeated .google.apps.card.v1.Columns.Column.Widgets widgets = 4;
-
-