com.google.apps.card.v1.MaterialIconOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-common-protos Show documentation
Show all versions of proto-google-common-protos Show documentation
PROTO library for proto-google-common-protos
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/apps/card/v1/card.proto
// Protobuf Java Version: 3.25.4
package com.google.apps.card.v1;
public interface MaterialIconOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.apps.card.v1.MaterialIcon)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The icon name defined in the [Google Material
* Icon](https://fonts.google.com/icons), for example, `check_box`. Any
* invalid names are abandoned and replaced with empty string and
* results in the icon failing to render.
*
*
* string name = 1;
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* The icon name defined in the [Google Material
* Icon](https://fonts.google.com/icons), for example, `check_box`. Any
* invalid names are abandoned and replaced with empty string and
* results in the icon failing to render.
*
*
* string name = 1;
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Whether the icon renders as filled. Default value is false.
*
* To preview different icon settings, go to
* [Google Font Icons](https://fonts.google.com/icons) and adjust the
* settings under **Customize**.
*
*
* bool fill = 2;
*
* @return The fill.
*/
boolean getFill();
/**
*
*
*
* The stroke weight of the icon. Choose from {100, 200, 300, 400,
* 500, 600, 700}. If absent, default value is 400. If any other value is
* specified, the default value is used.
*
* To preview different icon settings, go to
* [Google Font Icons](https://fonts.google.com/icons) and adjust the
* settings under **Customize**.
*
*
* int32 weight = 3;
*
* @return The weight.
*/
int getWeight();
/**
*
*
*
* Weight and grade affect a symbol’s thickness. Adjustments to grade are more
* granular than adjustments to weight and have a small impact on the size of
* the symbol. Choose from {-25, 0, 200}. If absent, default value is 0. If
* any other value is specified, the default value is used.
*
* To preview different icon settings, go to
* [Google Font Icons](https://fonts.google.com/icons) and adjust the
* settings under **Customize**.
*
*
* int32 grade = 4;
*
* @return The grade.
*/
int getGrade();
}