Skip navigation links
org.apache.myfaces.trinidad.model
Enum SortableModel.Strength
java.lang.Object
java.lang.Enum<SortableModel.Strength>
org.apache.myfaces.trinidad.model.SortableModel.Strength
- All Implemented Interfaces:
- Serializable, Comparable<SortableModel.Strength>
- Enclosing class:
- SortableModel
-
public static enum SortableModel.Strength
- extends Enum<SortableModel.Strength>
This class provides an enumeration to work with the integer values of the Collator strength values.
IDENTICAL
public static final SortableModel.Strength IDENTICAL
-
- See Also:
Collator.IDENTICAL
PRIMARY
public static final SortableModel.Strength PRIMARY
-
- See Also:
Collator.PRIMARY
SECONDARY
public static final SortableModel.Strength SECONDARY
-
- See Also:
Collator.SECONDARY
TERTIARY
public static final SortableModel.Strength TERTIARY
-
- See Also:
Collator.TERTIARY
values
public static SortableModel.Strength[] values()
- Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SortableModel.Strength c : SortableModel.Strength.values())
System.out.println(c);
-
- Returns:
- an array containing the constants of this enum type, in the order they are declared
valueOf
public static SortableModel.Strength valueOf(String name)
- Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null
getIntValue
public int getIntValue()
Skip navigation links
Copyright © 2001-2013 The Apache Software Foundation. All Rights Reserved.