Enum MatchType

  • MatchType is an enumeration used to define how a string value should be matched.

  • Matching a string using MatchType is a boolean operation returningtrue based on EXACT, PREFIX, or ANY match types.

  • MatchType can be used by a string filter control to filter data table rows based on a specified column and filter value.

  • You can access MatchType enum values by calling their parent class, name, and property, likeCharts.MatchType.EXACT.

MatchType

An enumeration of how a string value should be matched. Matching a string is a boolean operation.Given a string, a match term (string), and a match type, the operation outputstrue inthe following cases:

  1. If the match type equals EXACT and the match term equals the string.
  2. If the match type equals PREFIX and the match term is a prefix of the string.
  3. If the match type equals ANY and the match term is a substring of the string.

This enumeration can be used in by a string filter control to decide which rows to filter outof the data table. Given a column to filter on, leave only the rows that match the value enteredin the filter input box, using one of the above matching types.

To call an enum, you call its parent class, name, and property. For example,Charts.MatchType.EXACT.

Properties

PropertyTypeDescription
EXACTEnumMatch exact values only
PREFIXEnumMatch prefixes starting from the beginning of the value
ANYEnumMatch any substring

Methods

MethodReturn typeBrief description
getName()StringReturns the name of the match type to be used in the options JSON.

Detailed documentation

getName()

Returns the name of the match type to be used in the options JSON.

Return

String — The name of the type.

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-12-11 UTC.