public enum VtiSortField extends Enum<VtiSortField>
Enum of the standard sorting fields.
| Enum Constant and Description |
|---|
CHECKEDOUTTO
sort by checked out username
|
MODIFIED
sort by last modified date
|
MODIFIEDBY
sort by modifier
|
NAME
sort by name
|
TYPE
sort by type
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static VtiSortField |
value(String stringValue) |
static VtiSortField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VtiSortField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VtiSortField NAME
public static final VtiSortField TYPE
public static final VtiSortField MODIFIEDBY
public static final VtiSortField MODIFIED
public static final VtiSortField CHECKEDOUTTO
public static VtiSortField[] values()
for (VtiSortField c : VtiSortField.values()) System.out.println(c);
public static VtiSortField valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<VtiSortField>public static VtiSortField value(String stringValue)
Copyright © 2005–2014 Alfresco Software. All rights reserved.