Uses of Interface
guru.mikelue.jdut.function.OperatorPredicate
-
Packages that use OperatorPredicate Package Description guru.mikelue.jdut.function ForDataGrainOperator
,ReplaceFieldDataDecorator
, this package contains pre-implemented functions of utility.guru.mikelue.jdut.operation The most important objects to effect data to database.guru.mikelue.jdut.vendor This package defines theVendors
, which is used to discriminate vendor-specific funcdtions. -
-
Uses of OperatorPredicate in guru.mikelue.jdut.function
Methods in guru.mikelue.jdut.function that return OperatorPredicate Modifier and Type Method Description default OperatorPredicate
OperatorPredicate. and(OperatorPredicate other)
Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.default OperatorPredicate
OperatorPredicate. negate()
Returns a predicate that represents the logical negation of this predicate.default OperatorPredicate
OperatorPredicate. or(OperatorPredicate other)
Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.Methods in guru.mikelue.jdut.function with parameters of type OperatorPredicate Modifier and Type Method Description default OperatorPredicate
OperatorPredicate. and(OperatorPredicate other)
Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.default OperatorPredicate
OperatorPredicate. or(OperatorPredicate other)
Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another. -
Uses of OperatorPredicate in guru.mikelue.jdut.operation
Methods in guru.mikelue.jdut.operation with parameters of type OperatorPredicate Modifier and Type Method Description DefaultOperatorFactory.Builder
DefaultOperatorFactory.Builder. add(OperatorPredicate predicate, Map<String,DataGrainOperator> matchedOperators)
Adds a predicate and target operator if the predicatetesting
is true. -
Uses of OperatorPredicate in guru.mikelue.jdut.vendor
Methods in guru.mikelue.jdut.vendor that return OperatorPredicate Modifier and Type Method Description static OperatorPredicate
DatabaseVendor. buildOperatorPredicate(DatabaseVendor needVendor)
BuildsOperatorPredicate
for check ofDatabaseVendor
.static OperatorPredicate
VendorType. buildOperatorPredicate(VendorType needVendor)
BuildsOperatorPredicate
for check ofVendorType.getVendorName()
.
This method find any match ofVendorType.getVendorName()
inDatabaseMetaData.getDriverName()
(case insensitive).
-