public static enum SortableModel.Strength extends Enum<SortableModel.Strength>
Collator
strength values.Enum Constant and Description |
---|
IDENTICAL |
PRIMARY |
SECONDARY |
TERTIARY |
Modifier and Type | Method and Description |
---|---|
int |
getIntValue() |
static SortableModel.Strength |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SortableModel.Strength[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortableModel.Strength IDENTICAL
Collator.IDENTICAL
public static final SortableModel.Strength PRIMARY
Collator.PRIMARY
public static final SortableModel.Strength SECONDARY
Collator.SECONDARY
public static final SortableModel.Strength TERTIARY
Collator.TERTIARY
public static SortableModel.Strength[] values()
for (SortableModel.Strength c : SortableModel.Strength.values()) System.out.println(c);
public static SortableModel.Strength 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 nullpublic int getIntValue()
Copyright © 2001-2017 The Apache Software Foundation. All Rights Reserved.