public static enum GeohashReferenceSystem.Format extends Enum<GeohashReferenceSystem.Format>
GeohashReferenceSystem.Coder.| Enum Constant and Description |
|---|
BASE32
Format consisting of 32 symbols used at
http://geohash.org. |
| Modifier and Type | Method and Description |
|---|---|
static GeohashReferenceSystem.Format |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeohashReferenceSystem.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeohashReferenceSystem.Format BASE32
http://geohash.org. This encoding uses digits 0 to 9,
and lower-case letters 'b' to 'z' excluding 'i', 'l' and 'o'.
Decoding is case-insensitive.public static GeohashReferenceSystem.Format[] values()
for (GeohashReferenceSystem.Format c : GeohashReferenceSystem.Format.values()) System.out.println(c);
public static GeohashReferenceSystem.Format 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 © 2010–2017 The Apache Software Foundation. All rights reserved.