16 #ifndef HAZELCAST_CLIENT_QUERY_BETWEENPREDICATE_H_ 17 #define HAZELCAST_CLIENT_QUERY_BETWEENPREDICATE_H_ 21 #include "hazelcast/client/query/Predicate.h" 22 #include "hazelcast/client/serialization/ObjectDataOutput.h" 23 #include "hazelcast/client/serialization/ObjectDataInput.h" 24 #include "hazelcast/client/exception/IException.h" 25 #include "hazelcast/client/query/impl/predicates/PredicateDataSerializerHook.h" 27 #if defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64) 29 #pragma warning(disable: 4251) //for dll export 47 : attrName(attributeName), begin(from), end(to) {
54 return impl::predicates::F_ID;
61 return impl::predicates::BETWEEN_PREDICATE;
80 throw exception::HazelcastSerializationException(
"BetweenPredicate::readData",
81 "Client should not need to use readData method!!!");
93 #if defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64) int getClassId() const
Definition: BetweenPredicate.h:60
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
BetweenPredicate(const char *attributeName, const T &from, const T &to)
Definition: BetweenPredicate.h:46
int getFactoryId() const
Definition: BetweenPredicate.h:53
void readData(serialization::ObjectDataInput &in)
Defines how this class will be read.
Definition: BetweenPredicate.h:78
Type T should be a valid serializable and copiable type.
Definition: BetweenPredicate.h:39
This is a marker class for Predicate classes.
Definition: Predicate.h:36
Definition: MapEntryView.h:32
void writeUTF(const std::string *value)
Definition: ObjectDataOutput.cpp:92
void writeData(serialization::ObjectDataOutput &out) const
Defines how this class will be written.
Definition: BetweenPredicate.h:68