Package ghidra.program.database.util
Interface Query
-
- All Known Implementing Classes:
AndQuery,FieldMatchQuery,FieldRangeQuery,NotQuery,OrQuery,StringMatchQuery
public interface QueryQuery interface used to test a record for some condition.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Change Modifier and Type Method Description NEW booleanmatches(DBRecord record)Returns true if the given record matches the querys condition.REMOVED booleanmatches(Record record) (Removed)
-
-
-
Method Detail
-
matches NEW
boolean matches(DBRecord record)
Returns true if the given record matches the querys condition.- Parameters:
record- the record to test for compliance.
-
-