Package org.ametys.cms.search.query
Class DublinCoreQuery
- java.lang.Object
-
- org.ametys.cms.search.query.DublinCoreQuery
-
- All Implemented Interfaces:
Query
public class DublinCoreQuery extends Object implements Query
Query on a Dublin Core string metadata (all, except date).
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.ametys.cms.search.query.Query
Query.LogicalOperator, Query.Operator
-
-
Constructor Summary
Constructors Constructor Description DublinCoreQuery(String metadata, String value)
Create a Dublin Core query.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
build()
Build the solr query string representing the Query object.boolean
equals(Object obj)
int
hashCode()
-
-
-
Constructor Detail
-
DublinCoreQuery
public DublinCoreQuery(String metadata, String value)
Create a Dublin Core query.- Parameters:
metadata
- The metadata name, lower-cased and wihout 'dc:' prefix, such as "title" or "date".value
- The value to test.
-
-
Method Detail
-
build
public String build() throws QuerySyntaxException
Description copied from interface:Query
Build the solr query string representing the Query object.- Specified by:
build
in interfaceQuery
- Returns:
- the solr query string representing the Query object.
- Throws:
QuerySyntaxException
- if the query can't be built because of a syntax error.
-
-