|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<StreetSearchMode>
com.gisgraphy.domain.geoloc.service.fulltextsearch.StreetSearchMode
public enum StreetSearchMode
define the different way to search for street (by name)
Enum Constant Summary | |
---|---|
CONTAINS
mode suitable for autocompletion and search of a part of the street name (not entire word) |
|
FULLTEXT
Mode suitable to search for severalentire words with fulltext functionality (case insensitive,accent insensitive,...) |
Method Summary | |
---|---|
static StreetSearchMode |
getDefault()
|
static StreetSearchMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static StreetSearchMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final StreetSearchMode CONTAINS
public static final StreetSearchMode FULLTEXT
Method Detail |
---|
public static StreetSearchMode[] values()
for (StreetSearchMode c : StreetSearchMode.values()) System.out.println(c);
public static StreetSearchMode 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 name
java.lang.NullPointerException
- if the argument is nullpublic static StreetSearchMode getDefault()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |