public enum Granularity extends java.lang.Enum<Granularity>
Enum Constant and Description |
---|
CoarseGrained
Merge map tiles if possible to create a coarse-grained map.
|
FineGrained
Reserved for future use.
|
Normal
Use the map tiles found by the initial division algorithm.
|
Modifier and Type | Method and Description |
---|---|
static Granularity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Granularity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Granularity CoarseGrained
public static final Granularity Normal
public static final Granularity FineGrained
public static Granularity[] values()
for (Granularity c : Granularity.values()) System.out.println(c);
public static Granularity 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 null