Package org.openxava.session
Enum MyReportColumn.Order
- java.lang.Object
-
- java.lang.Enum<MyReportColumn.Order>
-
- org.openxava.session.MyReportColumn.Order
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MyReportColumn.Order>
- Enclosing class:
- MyReportColumn
public static enum MyReportColumn.Order extends java.lang.Enum<MyReportColumn.Order>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASCENDING
DESCENDING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MyReportColumn.Order
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MyReportColumn.Order[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASCENDING
public static final MyReportColumn.Order ASCENDING
-
DESCENDING
public static final MyReportColumn.Order DESCENDING
-
-
Method Detail
-
values
public static MyReportColumn.Order[] 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 (MyReportColumn.Order c : MyReportColumn.Order.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MyReportColumn.Order valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-