public interface SearchSupport
| Modifier and Type | Method and Description |
|---|---|
java.util.Set<java.lang.String> |
findKeysByMetaData(java.util.Map<java.lang.String,java.lang.String> metadata,
boolean ignoreCase)
Gets a Set of keys which exactly match the specified metadata.
|
java.util.Set<java.lang.String> |
findKeysByText(java.lang.String text,
boolean ignoreCase)
Finds the
Set of keys containing an exact match for text |
java.util.Set<java.lang.String> |
findKeysLikeKey(java.lang.String key,
boolean ignoreCase)
Finds the
Set of keys identifying entries whose key
contains the substring key. |
java.util.Set<java.lang.String> |
findKeysLikeMetaData(java.util.Map<java.lang.String,java.lang.String> metadata,
boolean ignoreCase)
Gets a Set of keys which is a contains match for the specified metadata.
|
java.util.Set<java.lang.String> |
findKeysLikeText(java.lang.String text,
boolean ignoreCase)
Finds the
Set of keys identifying entries whose translated text
contains the substring text. |
java.util.Set<java.lang.String> findKeysLikeKey(java.lang.String key,
boolean ignoreCase)
Set of keys identifying entries whose key
contains the substring key. No wildcards are expected or
allowed.
key - The substring key to matchignoreCase - True to request case insensitivitySet of keys containing a match. If no keys match,
then an empty Set is returned.java.lang.NullPointerException - If key is null.java.util.Set<java.lang.String> findKeysByText(java.lang.String text,
boolean ignoreCase)
Set of keys containing an exact match for texttext - The exact text to matchignoreCase - True to request case insensitivitySet of keys containing a match. If no keys match,
then an empty Set is returnedjava.lang.NullPointerException - If text is null.java.util.Set<java.lang.String> findKeysLikeText(java.lang.String text,
boolean ignoreCase)
Set of keys identifying entries whose translated text
contains the substring text. No wildcards are expected or
allowed.
text - The substring text to matchignoreCase - True to request case insensitivitySet of keys containing a match. If no keys match,
then an empty Set is returned.java.lang.NullPointerException - If text is null.java.util.Set<java.lang.String> findKeysByMetaData(java.util.Map<java.lang.String,java.lang.String> metadata,
boolean ignoreCase)
| Key | Value | Result |
| Key | Value | Result |
metadata - The metadata search criteria.ignoreCase - True to request case insensitivitySet is returned.java.util.Set<java.lang.String> findKeysLikeMetaData(java.util.Map<java.lang.String,java.lang.String> metadata,
boolean ignoreCase)
| Key | Value | Result |
| Key | Value | Result |
metadata - The metadata search criteria.ignoreCase - True to request case insensitivitySet is returned.