16 #ifndef HAZELCAST_CLIENT_QUERY_NOTEQUALPREDICATE_H_ 17 #define HAZELCAST_CLIENT_QUERY_NOTEQUALPREDICATE_H_ 20 #include "hazelcast/client/query/Predicate.h" 21 #include "hazelcast/client/serialization/ObjectDataOutput.h" 22 #include "hazelcast/client/serialization/ObjectDataInput.h" 23 #include "hazelcast/client/exception/IException.h" 24 #include "hazelcast/client/query/impl/predicates/PredicateDataSerializerHook.h" 26 #if defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64) 28 #pragma warning(disable: 4251) //for dll export 45 : attrName(attributeName), attrValue(value) {
52 return impl::predicates::F_ID;
59 return impl::predicates::NOTEQUAL_PREDICATE;
77 throw exception::HazelcastSerializationException(
"NotEqualPredicate::readData",
78 "Client should not need to use readData method!!!");
89 #if defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64) Type T should be a valid serializable and copiable type.
Definition: NotEqualPredicate.h:38
void writeObject(const T *object)
Definition: ObjectDataOutput.h:184
Provides serialization methods for primitive types,a arrays of primitive types, Portable, IdentifiedDataSerializable and custom serializables.
Definition: ObjectDataOutput.h:54
int getFactoryId() const
Definition: NotEqualPredicate.h:51
void readData(serialization::ObjectDataInput &in)
Defines how this class will be read.
Definition: NotEqualPredicate.h:75
void writeData(serialization::ObjectDataOutput &out) const
Defines how this class will be written.
Definition: NotEqualPredicate.h:66
This is a marker class for Predicate classes.
Definition: Predicate.h:36
PN (Positive-Negative) CRDT counter.
Definition: MapEntryView.h:32
int getClassId() const
Definition: NotEqualPredicate.h:58
void writeUTF(const std::string *value)
Definition: ObjectDataOutput.cpp:92
NotEqualPredicate(const char *attributeName, const T &value)
Definition: NotEqualPredicate.h:44