Package ghidra.program.database.util
Class NotQuery
- java.lang.Object
-
- ghidra.program.database.util.NotQuery
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
matches(DBRecord record)
Returns true if the given record matches the querys condition.
-
-
-
Constructor Detail
-
NotQuery
public NotQuery(Query q1)
Construct a new query that results in the not of the given query.- Parameters:
q1
- the query to logically negate.
-
-
Method Detail
-
matches
public boolean matches(DBRecord record)
Description copied from interface:Query
Returns true if the given record matches the querys condition.- Specified by:
matches
in interfaceQuery
- Parameters:
record
- the record to test for compliance.- See Also:
Query.matches(db.DBRecord)
-
-