Package com.jk.data.dataaccess.orm.util
Class JKBooleanYesNoConvertor
java.lang.Object
com.jk.data.dataaccess.orm.util.JKBooleanConverter
com.jk.data.dataaccess.orm.util.JKBooleanYesNoConvertor
This class is used to convert boolean values (
true
and false
)
into the ("YES"
,"NO"
) string representation respectively.
This class extends JKBooleanConverter
class.
- Version:
- 1.0
- Author:
- Dr. Jalal H. Kiswani
-
Constructor Summary
ConstructorsConstructorDescriptionThis method constructs a newJKBooleanYesNoConvertor
. -
Method Summary
Methods inherited from class com.jk.data.dataaccess.orm.util.JKBooleanConverter
convertToDatabaseColumn, convertToEntityAttribute
-
Constructor Details
-
JKBooleanYesNoConvertor
public JKBooleanYesNoConvertor()This method constructs a newJKBooleanYesNoConvertor
.This constructs represents the
true
boolean value with the"YES"
string, and thefalse
boolean value with the"NO"
string.
-