| org.pentaho.repository.ISearchable
All known Subclasses: org.pentaho.repository.content.ContentItem, org.pentaho.repository.content.ContentLocation, com.pentaho.repository.dbbased.solution.RepositoryFile,
ISearchable | public interface ISearchable (Code) | | |
SEARCH_TYPE_PHRASE | final public static int SEARCH_TYPE_PHRASE(Code) | | SEARCH_TYPE_PHRASE Searches for the exact phrase
|
SEARCH_TYPE_WORDS_AND | final public static int SEARCH_TYPE_WORDS_AND(Code) | | SEARCH_TYPE_WORDS_AND Searches for each word with each column using an
AND connector
|
SEARCH_TYPE_WORDS_OR | final public static int SEARCH_TYPE_WORDS_OR(Code) | | SEARCH_TYPE_WORDS_OR Searches for each word with each column using an OR
connector
|
getPhraseSearchQueryName | public String getPhraseSearchQueryName()(Code) | | Returns the fully-package-qualified name of a named query in theHibernate Schema that supports a full-text search of allsearchable columns. The parameter name for the search term in thequery must be :searchTerm or the query will fail. |
getSearchableColumns | public String[] getSearchableColumns()(Code) | | Returns an array of the char/varchar columns that can besearched. |
getSearchableTable | public String getSearchableTable()(Code) | | Returns the name of the hibernated object which will be used inthe search. |
|
|