public static enum SearchProperties.Property extends Enum<SearchProperties.Property>
| Enum Constant and Description |
|---|
INTERSECTS_BUFFER
GEOS-Error prevention buffer for intersects operations.
|
| Modifier and Type | Method and Description |
|---|---|
static SearchProperties.Property |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchProperties.Property[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchProperties.Property INTERSECTS_BUFFER
Some geometries have overlapping edges which causes GEOS-errors while doing intersects operations. Applying a small buffer over those geometries works as a workaround. This property is for adjusting this buffer (and should ONLY BE USED for this purpose).
public static SearchProperties.Property[] values()
for (SearchProperties.Property c : SearchProperties.Property.values()) System.out.println(c);
public static SearchProperties.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 © 2012–2025 cismet GmbH. All rights reserved.