public enum TrackerEfficiencyMode extends Enum<TrackerEfficiencyMode>
Enum Constant and Description |
---|
EnergyEfficiency
EnergyEfficiency: Less energy is needed because the calculations are not as accurate as with the HighAccuracy setting and not every frame is considered
|
HighAccuracy
HighAccuracy: The best result is calculated in the shortest amount of time for every frame which results in higher CPU usage
|
Modifier and Type | Method and Description |
---|---|
static TrackerEfficiencyMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TrackerEfficiencyMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrackerEfficiencyMode HighAccuracy
public static final TrackerEfficiencyMode EnergyEfficiency
public static TrackerEfficiencyMode[] values()
for (TrackerEfficiencyMode c : TrackerEfficiencyMode.values()) System.out.println(c);
public static TrackerEfficiencyMode 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 null