public static enum GeoHashCoder.Format extends Enum<GeoHashCoder.Format>
GeoHashCoder
.Enum Constant and Description |
---|
BASE32
Format consisting of 32 symbols used at
http://geohash.org . |
Modifier and Type | Method and Description |
---|---|
static GeoHashCoder.Format |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeoHashCoder.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeoHashCoder.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 GeoHashCoder.Format[] values()
for (GeoHashCoder.Format c : GeoHashCoder.Format.values()) System.out.println(c);
public static GeoHashCoder.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–2013 The Apache Software Foundation. All rights reserved.