public enum UserActivityTracking extends Enum<UserActivityTracking>
Enum Constant and Description |
---|
INSTANCE
single instance
|
Modifier and Type | Method and Description |
---|---|
void |
addRecord(UserActivityTrackDao userActivityTrackDao,
String principal,
long now) |
Set<String> |
getCurrentActiveUsers() |
static UserActivityTracking |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserActivityTracking[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserActivityTracking INSTANCE
public static UserActivityTracking[] values()
for (UserActivityTracking c : UserActivityTracking.values()) System.out.println(c);
public static UserActivityTracking 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 void addRecord(UserActivityTrackDao userActivityTrackDao, String principal, long now)
Copyright © 2007-2020 Whitestein Technologies. All Rights Reserved.