Class EqualsPredicate<T>
java.lang.Object
com.linkedin.venice.client.store.predicate.EqualsPredicate<T>
- All Implemented Interfaces:
Predicate<T>
-
Method Summary
Modifier and TypeMethodDescriptionboolean
boolean
isCompatibleWithSchema
(org.apache.avro.Schema schema) Checks if this predicate is compatible with the given Avro schema type.toString()
-
Method Details
-
evaluate
-
isCompatibleWithSchema
public boolean isCompatibleWithSchema(org.apache.avro.Schema schema) Description copied from interface:Predicate
Checks if this predicate is compatible with the given Avro schema type. This method should be implemented by each predicate type to provide type-specific compatibility logic.- Specified by:
isCompatibleWithSchema
in interfacePredicate<T>
- Parameters:
schema
- The Avro schema to check compatibility against- Returns:
- true if this predicate is compatible with the schema type
-
toString
-