Package org.opennms.web.event
Enum SortStyle
- java.lang.Object
-
- java.lang.Enum<SortStyle>
-
- org.opennms.web.event.SortStyle
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALARMID
ID
INTERFACE
LOCATION
NODE
NODE_LOCATION
POLLER
REVERSE_ALARMID
REVERSE_ID
REVERSE_INTERFACE
REVERSE_LOCATION
REVERSE_NODE
REVERSE_NODE_LOCATION
REVERSE_POLLER
REVERSE_SERVICE
REVERSE_SEVERITY
REVERSE_SYSTEMID
REVERSE_TIME
SERVICE
SEVERITY
SYSTEMID
TIME
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
getNameprotected java.lang.String
getOrderByClause()
Convenience method for getting the SQL ORDER BY clause related to a given sort style.java.lang.String
getShortName()
getShortNamestatic SortStyle
getSortStyle(java.lang.String sortStyleString)
getSortStylejava.lang.String
toString()
toStringstatic SortStyle
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SortStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SEVERITY
public static final SortStyle SEVERITY
-
TIME
public static final SortStyle TIME
-
NODE
public static final SortStyle NODE
-
NODE_LOCATION
public static final SortStyle NODE_LOCATION
-
INTERFACE
public static final SortStyle INTERFACE
-
SERVICE
public static final SortStyle SERVICE
-
POLLER
public static final SortStyle POLLER
-
ID
public static final SortStyle ID
-
SYSTEMID
public static final SortStyle SYSTEMID
-
LOCATION
public static final SortStyle LOCATION
-
ALARMID
public static final SortStyle ALARMID
-
REVERSE_SEVERITY
public static final SortStyle REVERSE_SEVERITY
-
REVERSE_TIME
public static final SortStyle REVERSE_TIME
-
REVERSE_NODE
public static final SortStyle REVERSE_NODE
-
REVERSE_NODE_LOCATION
public static final SortStyle REVERSE_NODE_LOCATION
-
REVERSE_INTERFACE
public static final SortStyle REVERSE_INTERFACE
-
REVERSE_SERVICE
public static final SortStyle REVERSE_SERVICE
-
REVERSE_POLLER
public static final SortStyle REVERSE_POLLER
-
REVERSE_ID
public static final SortStyle REVERSE_ID
-
REVERSE_SYSTEMID
public static final SortStyle REVERSE_SYSTEMID
-
REVERSE_LOCATION
public static final SortStyle REVERSE_LOCATION
-
REVERSE_ALARMID
public static final SortStyle REVERSE_ALARMID
-
-
Method Detail
-
values
public static SortStyle[] 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 (SortStyle c : SortStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SortStyle 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
-
toString
public java.lang.String toString()
toString
- Overrides:
toString
in classjava.lang.Enum<SortStyle>
- Returns:
- a
String
object.
-
getName
public java.lang.String getName()
getName
- Returns:
- a
String
object.
-
getShortName
public java.lang.String getShortName()
getShortName
- Returns:
- a
String
object.
-
getSortStyle
public static SortStyle getSortStyle(java.lang.String sortStyleString)
getSortStyle
- Parameters:
sortStyleString
- aString
object.- Returns:
- a
SortStyle
object.
-
getOrderByClause
protected java.lang.String getOrderByClause()
Convenience method for getting the SQL ORDER BY clause related to a given sort style.- Returns:
- a
String
object.
-
-