public enum StrengthEnum extends Enum<StrengthEnum>
Note: ICU and the JDK use different integer constants for the #IDENTICAL strength
Enum Constant and Description |
---|
Identical
See
Collator.IDENTICAL . |
Primary
See
Collator.PRIMARY . |
Quaternary
Note: this option is NOT supported by the JDK.
|
Secondary
See
Collator.SECONDARY . |
Tertiary
See
Collator.TERTIARY . |
Modifier and Type | Method and Description |
---|---|
static StrengthEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StrengthEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StrengthEnum Primary
Collator.PRIMARY
.public static final StrengthEnum Secondary
Collator.SECONDARY
.public static final StrengthEnum Tertiary
Collator.TERTIARY
.public static final StrengthEnum Quaternary
public static final StrengthEnum Identical
Collator.IDENTICAL
.public static StrengthEnum[] values()
for (StrengthEnum c : StrengthEnum.values()) System.out.println(c);
public static StrengthEnum valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.