public enum DecimationPolicy extends Enum<DecimationPolicy>
| Enum Constant and Description |
|---|
ALLOW
Allows decimation on reading
|
DISALLOW
Disallows decimation on reading
|
| Modifier and Type | Method and Description |
|---|---|
static DecimationPolicy |
getDefaultPolicy() |
static DecimationPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DecimationPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecimationPolicy ALLOW
public static final DecimationPolicy DISALLOW
public static DecimationPolicy[] values()
for (DecimationPolicy c : DecimationPolicy.values()) System.out.println(c);
public static DecimationPolicy 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 static DecimationPolicy getDefaultPolicy()
Copyright © 1996–2019 Geotools. All rights reserved.