Enum InputType
Оптимизируйте свои подборки
Сохраняйте и классифицируйте контент в соответствии со своими настройками.
Тип входа Перечисление, определяющее тип ввода виджета.
Input Type.TEXT
означает, что ввод принимает обычный текст, включая все символы.
Input Type.INTEGER
означает, что вход принимает целое число.
Input Type.FLOAT
означает, что вход принимает число с плавающей запятой.
Input Type.EMAIL
означает, что в качестве входных данных принимается адрес электронной почты.
Чтобы вызвать перечисление, вы вызываете его родительский класс, имя и свойство. Например, CardService.InputType.INTEGER
.
Характеристики
Свойство | Тип | Описание |
---|
TEXT | Enum | Примите обычный текст. |
INTEGER | Enum | Примите целое число. |
FLOAT | Enum | Примите число с плавающей запятой. |
EMAIL | Enum | Примите адрес электронной почты. |
Если не указано иное, контент на этой странице предоставляется по лицензии Creative Commons "С указанием авторства 4.0", а примеры кода – по лицензии Apache 2.0. Подробнее об этом написано в правилах сайта. Java – это зарегистрированный товарный знак корпорации Oracle и ее аффилированных лиц.
Последнее обновление: 2025-07-24 UTC.
[null,null,["Последнее обновление: 2025-07-24 UTC."],[[["\u003cp\u003eInputType is an enum defining the accepted input type for a widget, such as text, integer, float, or email.\u003c/p\u003e\n"],["\u003cp\u003eTo utilize an enum, reference its parent class, name, and property, for instance: \u003ccode\u003eCardService.InputType.INTEGER\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThis feature is currently in Developer Preview and accessible through the Google Workspace Developer Preview Program.\u003c/p\u003e\n"]]],["`InputType` is an enum defining acceptable input types for a widget. It includes `TEXT` for all characters, `INTEGER` for whole numbers, `FLOAT` for decimal numbers, and `EMAIL` for email addresses. Each type is called using its parent class, name, and property, like `CardService.InputType.INTEGER`. This feature is part of the Google Workspace Developer Preview Program. Each Input Type Property can be referenced in a table to explain it in detail, such as Type, and Description.\n"],null,["# Enum InputType\n\nInputType\n\nAn enum that defines the input type of the widget.\n\n\n`Input``Type.TEXT` means that the input accepts regular text including all characters.\n\n\n`Input``Type.INTEGER` means that the input accepts an integer.\n\n\n`Input``Type.FLOAT` means that the input accepts a floating-point number.\n\n\n`Input``Type.EMAIL` means that the input accepts an email address.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nCardService.InputType.INTEGER`.\n\n\n| **Developer Preview:** Available as part of the [Google Workspace Developer Preview Program](https://developers.google.com/workspace/preview), which grants early access to certain features.\n\n\u003cbr /\u003e\n\n### Properties\n\n| Property | Type | Description |\n|-----------|--------|---------------------------------|\n| `TEXT` | `Enum` | Accept regular text. |\n| `INTEGER` | `Enum` | Accept an integer. |\n| `FLOAT` | `Enum` | Accept a floating-point number. |\n| `EMAIL` | `Enum` | Accept an email address. |"]]