Class SearchCriteria.PropertyMatchClause
- java.lang.Object
-
- ch.systemsx.cisd.openbis.generic.shared.api.v1.dto.SearchCriteria.MatchClause
-
- ch.systemsx.cisd.openbis.generic.shared.api.v1.dto.SearchCriteria.PropertyMatchClause
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- SearchCriteria
@JsonObject("PropertyMatchClause") public static class SearchCriteria.PropertyMatchClause extends SearchCriteria.MatchClause
A MatchClause for checking that a property equals a desired value.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
PropertyMatchClause(java.lang.String propertyCode, java.lang.String desiredValue)
Factory method to create a MatchClause matching against a specific property.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getPropertyCode()
Return the code of the property to compare against.-
Methods inherited from class ch.systemsx.cisd.openbis.generic.shared.api.v1.dto.SearchCriteria.MatchClause
createAnyFieldMatch, createAnyPropertyMatch, createAttributeMatch, createPropertyMatch, createTimeAttributeMatch, equals, escape, getCompareMode, getDesiredValue, getFieldCode, getFieldType, hashCode, toString
-
-
-
-
Constructor Detail
-
PropertyMatchClause
protected PropertyMatchClause(java.lang.String propertyCode, java.lang.String desiredValue)
Factory method to create a MatchClause matching against a specific property.- Parameters:
propertyCode
- The property to compare against.desiredValue
- The desired value of the property.
-
-