public enum SortDescriptor extends java.lang.Enum<SortDescriptor>
| Modifier and Type | Class and Description |
|---|---|
static class |
SortDescriptor.Adapter |
| Enum Constant and Description |
|---|
CWE |
ID |
PATH |
RULE |
SEVERITY |
STATUS |
TOOL |
| Modifier and Type | Method and Description |
|---|---|
static SortDescriptor |
fromValue(java.lang.String text) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static SortDescriptor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SortDescriptor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortDescriptor ID
public static final SortDescriptor RULE
public static final SortDescriptor SEVERITY
public static final SortDescriptor PATH
public static final SortDescriptor STATUS
public static final SortDescriptor CWE
public static final SortDescriptor TOOL
public static SortDescriptor[] values()
for (SortDescriptor c : SortDescriptor.values()) System.out.println(c);
public static SortDescriptor valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()
public java.lang.String toString()
toString in class java.lang.Enum<SortDescriptor>public static SortDescriptor fromValue(java.lang.String text)