Enum Class InteractiveMapOptions.CountMode
java.lang.Object
java.lang.Enum<InteractiveMapOptions.CountMode>
com.here.platform.data.client.model.InteractiveMapOptions.CountMode
- All Implemented Interfaces:
Serializable,Comparable<InteractiveMapOptions.CountMode>,Constable
- Enclosing class:
- InteractiveMapOptions
Allowed values for CountMode in QuadBin requests.
- real = real feature counts. Best accuracy, but slow. Not recommended for big result sets.
- estimated = estimated feature counts. Low accuracy, but very fast. Recommended for big result sets.
- mixed (default) = estimated feature counts combined with real ones. If the estimation is low a real count gets applied. Fits to the most use cases.
- bool = test if data exists in tile but does not count features. The returned count property set to 1, for non empty tiles
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptiongetText()toString()Returns the enum constant of this class with the specified name.static InteractiveMapOptions.CountMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
-
Enum Constant Details
-
REAL
-
ESTIMATED
-
MIXED
-
BOOL
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getText
-
toString
- Overrides:
toStringin classEnum<InteractiveMapOptions.CountMode>
-