public static enum DocumentStats.Property extends Enum<DocumentStats.Property>
Enum Constant and Description |
---|
action
The action made on the document ("view", "save", ...).
|
uniqueVisitors
The number of unique visitors.
|
visits
The number of visits.
|
Modifier and Type | Method and Description |
---|---|
static DocumentStats.Property |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentStats.Property[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentStats.Property action
public static final DocumentStats.Property uniqueVisitors
public static final DocumentStats.Property visits
public static DocumentStats.Property[] values()
for (DocumentStats.Property c : DocumentStats.Property.values()) System.out.println(c);
public static DocumentStats.Property 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 nullCopyright © 2004–2022 XWiki. All rights reserved.