Most visited

Recently visited

Added in API level 24

CollationKey.BoundMode

public static final class CollationKey.BoundMode
extends Object

java.lang.Object
   ↳ android.icu.text.CollationKey.BoundMode


Options that used in the API CollationKey.getBound() for getting a CollationKey based on the bound mode requested.

Summary

Constants

int LOWER

Lower bound

int UPPER

Upper bound that will match strings of exact size

int UPPER_LONG

Upper bound that will match all the strings that have the same initial substring as the given string

Inherited methods

From class java.lang.Object

Constants

LOWER

Added in API level 24
int LOWER

Lower bound

Constant Value: 0 (0x00000000)

UPPER

Added in API level 24
int UPPER

Upper bound that will match strings of exact size

Constant Value: 1 (0x00000001)

UPPER_LONG

Added in API level 24
int UPPER_LONG

Upper bound that will match all the strings that have the same initial substring as the given string

Constant Value: 2 (0x00000002)

Hooray!