public enum VisitSensitivity extends java.lang.Enum<VisitSensitivity>
Enum Constant and Description |
---|
MEDIUM_RECALL
Medium visit geolocation accuracy, medium detection precision, excludes shorter-length visits, medium detection recall.
|
PRECISION_OPTIMIZED
Higher visit geolocation accuracy, higher detection precision, excludes short- and medium-length visits, lower detection recall.
|
RECALL_OPTIMIZED
Lower visit geolocation accuracy, lower detection precision, includes shorter-length visits, higher detection recall.
|
UNKNOWN_SENSITIVITY
An internal error could produce UNKNOWN_SENSITIVITY.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static VisitSensitivity |
getVisitSensitivity(int val) |
static VisitSensitivity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VisitSensitivity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VisitSensitivity UNKNOWN_SENSITIVITY
public static final VisitSensitivity RECALL_OPTIMIZED
public static final VisitSensitivity MEDIUM_RECALL
public static final VisitSensitivity PRECISION_OPTIMIZED
public static VisitSensitivity[] values()
for (VisitSensitivity c : VisitSensitivity.values()) System.out.println(c);
public static VisitSensitivity 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 int getValue()
public static VisitSensitivity getVisitSensitivity(int val)