Package org.ametys.cms.search.query
Class FilenameQuery
- java.lang.Object
-
- org.ametys.cms.search.query.FilenameQuery
-
- All Implemented Interfaces:
Query
public class FilenameQuery extends Object implements Query
Represents aQuerytesting the resource file name.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.ametys.cms.search.query.Query
Query.LogicalOperator, Query.Operator
-
-
Field Summary
Fields Modifier and Type Field Description private Query.Operator_operatorThe operator.private String_valueThe value to test.
-
Constructor Summary
Constructors Constructor Description FilenameQuery(String value)Build a string query.FilenameQuery(Query.Operator op, String value)Build a string query.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringbuild()Build the solr query string representing the Query object.booleanequals(Object obj)inthashCode()
-
-
-
Field Detail
-
_operator
private Query.Operator _operator
The operator.
-
-
Constructor Detail
-
FilenameQuery
public FilenameQuery(String value)
Build a string query.- Parameters:
value- the value.
-
FilenameQuery
public FilenameQuery(Query.Operator op, String value)
Build a string query.- Parameters:
op- the operator.value- the value.
-
-
Method Detail
-
build
public String build() throws QuerySyntaxException
Description copied from interface:QueryBuild the solr query string representing the Query object.- Specified by:
buildin interfaceQuery- Returns:
- the solr query string representing the Query object.
- Throws:
QuerySyntaxException- if the query can't be built because of a syntax error.
-
-