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

    Modifier and Type
    Method
    Description
    int
    The corner radius for the border.
    The colors to use when the type is `BORDER_TYPE_STROKE`.
    The colors to use when the type is `BORDER_TYPE_STROKE`.
    The border type.
    int
    The border type.
    boolean
    The colors to use when the type is `BORDER_TYPE_STROKE`.

    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 Details

    • 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

       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`.
      
       To set the stroke color, specify a value for the `red`, `green`, and `blue`
       fields.
       The value must be a float number between 0 and 1 based on the RGB color
       value, where `0` (0/255) represents the absence of color  and `1` (255/255)
       represents the maximum intensity of the color.
      
       For example, the following sets the color to red at its maximum intensity:
      
       ```
       "color": {
          "red": 1,
          "green": 0,
          "blue": 0,
       }
       ```
      
       The `alpha` field is unavailable for stroke color. If specified, this field
       is ignored.
       
      .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`.
      
       To set the stroke color, specify a value for the `red`, `green`, and `blue`
       fields.
       The value must be a float number between 0 and 1 based on the RGB color
       value, where `0` (0/255) represents the absence of color  and `1` (255/255)
       represents the maximum intensity of the color.
      
       For example, the following sets the color to red at its maximum intensity:
      
       ```
       "color": {
          "red": 1,
          "green": 0,
          "blue": 0,
       }
       ```
      
       The `alpha` field is unavailable for stroke color. If specified, this field
       is ignored.
       
      .google.type.Color stroke_color = 2;
      Returns:
      The strokeColor.
    • getStrokeColorOrBuilder

      ColorOrBuilder getStrokeColorOrBuilder()
       The colors to use when the type is `BORDER_TYPE_STROKE`.
      
       To set the stroke color, specify a value for the `red`, `green`, and `blue`
       fields.
       The value must be a float number between 0 and 1 based on the RGB color
       value, where `0` (0/255) represents the absence of color  and `1` (255/255)
       represents the maximum intensity of the color.
      
       For example, the following sets the color to red at its maximum intensity:
      
       ```
       "color": {
          "red": 1,
          "green": 0,
          "blue": 0,
       }
       ```
      
       The `alpha` field is unavailable for stroke color. If specified, this field
       is ignored.
       
      .google.type.Color stroke_color = 2;
    • getCornerRadius

      int getCornerRadius()
       The corner radius for the border.
       
      int32 corner_radius = 3;
      Returns:
      The cornerRadius.