Package net.sf.basedb.util.jep.convert
Class NotConverter
java.lang.Object
net.sf.basedb.util.jep.convert.AbstractJepConversionFunction<Node>
net.sf.basedb.util.jep.convert.NotConverter
- All Implemented Interfaces:
JepConversionFunction<Node>
Convert
Not
function
to a Query API Restriction
.- Version:
- 2.4
- Author:
- nicklas
- Last modified
- $Date: 2008-09-11 22:08:14 +0200 (to, 11 sep 2008) $
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGet a short description of the function or operatorgetName()
Get the name of the function or the symbol of the operatorboolean
If this converter is a built-in operator.toRestriction
(Node node) Convert to restriction by callingRestrictions.not(Restriction)
.Methods inherited from class net.sf.basedb.util.jep.convert.AbstractJepConversionFunction
isFunction, toExpression
-
Constructor Details
-
NotConverter
public NotConverter()
-
-
Method Details
-
isOperator
public boolean isOperator()Description copied from interface:JepConversionFunction
If this converter is a built-in operator.- Specified by:
isOperator
in interfaceJepConversionFunction<Node>
- Overrides:
isOperator
in classAbstractJepConversionFunction<Node>
- Returns:
- Always FALSE
-
getName
Description copied from interface:JepConversionFunction
Get the name of the function or the symbol of the operator- Specified by:
getName
in interfaceJepConversionFunction<Node>
- Overrides:
getName
in classAbstractJepConversionFunction<Node>
- Returns:
- The string '!'
-
getDescription
Description copied from interface:JepConversionFunction
Get a short description of the function or operator- Specified by:
getDescription
in interfaceJepConversionFunction<Node>
- Overrides:
getDescription
in classAbstractJepConversionFunction<Node>
- Returns:
- Always null
-
toRestriction
Convert to restriction by callingRestrictions.not(Restriction)
.- Specified by:
toRestriction
in interfaceJepConversionFunction<Node>
- Overrides:
toRestriction
in classAbstractJepConversionFunction<Node>
- Parameters:
node
- The object to convert- Returns:
- A restriction or null
-