public static enum VisitStats.Property extends Enum<VisitStats.Property>
Enum Constant and Description |
---|
cookie
The name of the property containing the cookie id of the user.
|
downloads
The name of the property containing the number of downloaded pages during this visit.
|
endDate
The name of the property containing the ending date of the user visit.
|
ip
The name of the property containing the IP address of the user.
|
pageSaves
The name of the property containing the number of saved pages during this visit.
|
startDate
The name of the property containing the starting date of the user visit.
|
uniqueID
The name of the property containing the unique id of the user visit.
|
userAgent
The name of the property containing the user agent of the user.
|
Modifier and Type | Method and Description |
---|---|
static VisitStats.Property |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VisitStats.Property[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VisitStats.Property pageSaves
public static final VisitStats.Property downloads
public static final VisitStats.Property startDate
public static final VisitStats.Property endDate
public static final VisitStats.Property uniqueID
public static final VisitStats.Property cookie
public static final VisitStats.Property ip
public static final VisitStats.Property userAgent
public static VisitStats.Property[] values()
for (VisitStats.Property c : VisitStats.Property.values()) System.out.println(c);
public static VisitStats.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–2021 XWiki. All rights reserved.