org.apache.myfaces.trinidad.model
Enum SortableModel.Decomposition
java.lang.Object
java.lang.Enum<SortableModel.Decomposition>
org.apache.myfaces.trinidad.model.SortableModel.Decomposition
- All Implemented Interfaces:
- Serializable, Comparable<SortableModel.Decomposition>
- Enclosing class:
- SortableModel
public static enum SortableModel.Decomposition
- extends Enum<SortableModel.Decomposition>
This class provides an enumeration to work with the integer values of the
Collator
decomposition values.
NO_DECOMPOSITION
public static final SortableModel.Decomposition NO_DECOMPOSITION
- See Also:
Collator.PRIMARY
CANONICAL_DECOMPOSITION
public static final SortableModel.Decomposition CANONICAL_DECOMPOSITION
- See Also:
Collator.SECONDARY
FULL_DECOMPOSITION
public static final SortableModel.Decomposition FULL_DECOMPOSITION
- See Also:
Collator.TERTIARY
values
public static SortableModel.Decomposition[] 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.Decomposition c : SortableModel.Decomposition.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.Decomposition 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()
Copyright © 2001-2012 The Apache Software Foundation. All Rights Reserved.