public enum IndexTokenisationMode extends Enum<IndexTokenisationMode>
Enum Constant and Description |
---|
BOTH
There may be two indexes - one to support ordering and one to support
search.
|
FALSE
Do not tokenise the property.
|
TRUE
Tokenise the property.
|
Modifier and Type | Method and Description |
---|---|
static IndexTokenisationMode |
deserializer(String value) |
static String |
serializer(IndexTokenisationMode indexTokenisationMode) |
static IndexTokenisationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexTokenisationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexTokenisationMode TRUE
public static final IndexTokenisationMode FALSE
public static final IndexTokenisationMode BOTH
public static IndexTokenisationMode[] values()
for (IndexTokenisationMode c : IndexTokenisationMode.values()) System.out.println(c);
public static IndexTokenisationMode 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 String serializer(IndexTokenisationMode indexTokenisationMode)
public static IndexTokenisationMode deserializer(String value)
Copyright © 2005–2020 Alfresco Software. All rights reserved.