Package com.google.apps.card.v1
Interface BorderStyleOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BorderStyle,BorderStyle.Builder
public interface BorderStyleOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetCornerRadius()The corner radius for the border.ColorgetStrokeColor()The colors to use when the type is `BORDER_TYPE_STROKE`.ColorOrBuildergetStrokeColorOrBuilder()The colors to use when the type is `BORDER_TYPE_STROKE`.BorderStyle.BorderTypegetType()The border type.intgetTypeValue()The border type.booleanhasStrokeColor()The colors to use when the type is `BORDER_TYPE_STROKE`.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTypeValue
int getTypeValue()
The border type.
.google.apps.card.v1.BorderStyle.BorderType type = 1;- Returns:
- The enum numeric value on the wire for type.
-
getType
BorderStyle.BorderType getType()
The border type.
.google.apps.card.v1.BorderStyle.BorderType type = 1;- Returns:
- The type.
-
hasStrokeColor
boolean hasStrokeColor()
The colors to use when the type is `BORDER_TYPE_STROKE`.
.google.type.Color stroke_color = 2;- Returns:
- Whether the strokeColor field is set.
-
getStrokeColor
Color getStrokeColor()
The colors to use when the type is `BORDER_TYPE_STROKE`.
.google.type.Color stroke_color = 2;- Returns:
- The strokeColor.
-
getStrokeColorOrBuilder
ColorOrBuilder getStrokeColorOrBuilder()
The colors to use when the type is `BORDER_TYPE_STROKE`.
.google.type.Color stroke_color = 2;
-
getCornerRadius
int getCornerRadius()
The corner radius for the border.
int32 corner_radius = 3;- Returns:
- The cornerRadius.
-
-