Enum MatchType
MatchType
一个枚举,用于说明应如何匹配字符串值。匹配字符串是一项布尔操作。
如果给定字符串、匹配字词(字符串)和匹配类型,运算会在以下情况下输出 true
:
- 匹配类型等于 EXACT 且匹配字词等于字符串时抛出该异常。
- 如果匹配类型等于 PREFIX,且匹配字词是字符串的前缀。
- 匹配类型为 ANY,且匹配字词是字符串的子字符串。
字符串过滤器控件可以使用此枚举来决定要从数据表中滤除哪些行。对于要过滤的列,使用上述匹配类型之一,仅保留与过滤条件输入框中输入的值匹配的行。
若要调用枚举,您可以调用其父类、名称和属性。例如
Charts.MatchType.EXACT
。
属性
媒体资源 | 类型 | 说明 |
EXACT | Enum | 仅匹配完全匹配的值 |
PREFIX | Enum | 从值的开头开始匹配前缀 |
ANY | Enum | 匹配任何子字符串 |
方法
方法 | 返回类型 | 简介 |
getName() | String | 返回要在选项 JSON 中使用的匹配类型的名称。 |
详细文档
getName()
返回要在选项 JSON 中使用的匹配类型的名称。
弃踢回攻
String
- 类型的名称。
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2023-12-02。
[null,null,["最后更新时间 (UTC):2023-12-02。"],[[["`MatchType` is an enumeration used to define how a string value should be matched against a given search term."],["It provides three options: `EXACT`, `PREFIX`, and `ANY` for matching exact values, prefixes, and substrings respectively."],["This enumeration can be utilized by string filter controls to filter data table rows based on user input and the selected match type."],["Calling a `MatchType` property is done using the parent class, name, and desired property, for instance, `Charts.MatchType.EXACT`."],["The `getName()` method is available to retrieve the name of the match type for use in JSON options."]]],[]]