Stay organized with collections
Save and categorize content based on your preferences.
CountMethod
class CountMethod
Options for replaceFrom and countIn to control how to treat each matched span. It is similar to whether one is replacing [abc] by x, or [abc]* by x.
Summary
Enum values |
Use the smallest number of elements in the spanned range for counting and modification, based on the UnicodeSet.SpanCondition .
|
Collapse spans.
|
Enum values
MIN_ELEMENTS
enum val MIN_ELEMENTS : UnicodeSetSpanner.CountMethod
Use the smallest number of elements in the spanned range for counting and modification, based on the UnicodeSet.SpanCondition
. If the set has no strings, this will be the same as the number of spanned code points.
For example, in the string "abab" with SpanCondition.SIMPLE:
- spanning with [ab] will count four MIN_ELEMENTS.
- spanning with [{ab}] will count two MIN_ELEMENTS.
- spanning with [ab{ab}] will also count two MIN_ELEMENTS.
WHOLE_SPAN
enum val WHOLE_SPAN : UnicodeSetSpanner.CountMethod
Collapse spans. That is, modify/count the entire matching span as a single item, instead of separate set elements.
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# UnicodeSetSpanner.CountMethod\n\nAdded in [API level 24](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nCountMethod\n===========\n\n*** ** * ** ***\n\nKotlin \\|[Java](/reference/android/icu/text/UnicodeSetSpanner.CountMethod \"View this page in Java\") \n\n```\nclass CountMethod\n```\n\n|---|---|-----------------------------------------------------|\n| [kotlin.Any](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html) |||\n| ↳ | [kotlin.Enum](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-enum/index.html)\\\u003c[android.icu.text.UnicodeSetSpanner.CountMethod](#)\\\u003e ||\n| | ↳ | [android.icu.text.UnicodeSetSpanner.CountMethod](#) |\n\n|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Known Direct Subclasses [UnicodeSetSpanner.CountMethod.MIN_ELEMENTS](#ENUM_VALUE:MIN_ELEMENTS), [UnicodeSetSpanner.CountMethod.WHOLE_SPAN](#ENUM_VALUE:WHOLE_SPAN) |------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [UnicodeSetSpanner.CountMethod.MIN_ELEMENTS](#ENUM_VALUE:MIN_ELEMENTS) | Use the smallest number of elements in the spanned range for counting and modification, based on the [UnicodeSet.SpanCondition](/reference/kotlin/android/icu/text/UnicodeSet.SpanCondition). | | [UnicodeSetSpanner.CountMethod.WHOLE_SPAN](#ENUM_VALUE:WHOLE_SPAN) | Collapse spans. | |\n\nOptions for replaceFrom and countIn to control how to treat each matched span. It is similar to whether one is replacing \\[abc\\] by x, or \\[abc\\]\\* by x.\n\nSummary\n-------\n\n| Enum values ||\n|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---|\n| [MIN_ELEMENTS](#ENUM_VALUE:MIN_ELEMENTS) Use the smallest number of elements in the spanned range for counting and modification, based on the [UnicodeSet.SpanCondition](/reference/kotlin/android/icu/text/UnicodeSet.SpanCondition). |\n| [WHOLE_SPAN](#ENUM_VALUE:WHOLE_SPAN) Collapse spans. |\n\nEnum values\n-----------\n\n### MIN_ELEMENTS\n\nAdded in [API level 24](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nenum val MIN_ELEMENTS : UnicodeSetSpanner.CountMethod\n```\n\nUse the smallest number of elements in the spanned range for counting and modification, based on the [UnicodeSet.SpanCondition](/reference/kotlin/android/icu/text/UnicodeSet.SpanCondition). If the set has no strings, this will be the same as the number of spanned code points.\n\nFor example, in the string \"abab\" with SpanCondition.SIMPLE:\n\n- spanning with \\[ab\\] will count four MIN_ELEMENTS.\n- spanning with \\[{ab}\\] will count two MIN_ELEMENTS.\n- spanning with \\[ab{ab}\\] will also count two MIN_ELEMENTS. \n\n### WHOLE_SPAN\n\nAdded in [API level 24](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nenum val WHOLE_SPAN : UnicodeSetSpanner.CountMethod\n```\n\nCollapse spans. That is, modify/count the entire matching span as a single item, instead of separate set elements."]]