public interface BooleanArrayResult extends DBExpression, ExpressionCanHaveNullValues
DBvolution attempts to maintain type safety using the *Result interfaces. Most operations requiring a bit type will not accept anything other than an actual bit type.
Add implements BooleanArrayResult to your class and override the copy
method so that it returns your class type.
Support DBvolution at Patreon
DBExpression| Modifier and Type | Method and Description |
|---|---|
BooleanArrayResult |
copy()
A Complete Copy Of This DBValue.
|
getQueryableDatatypeForExpressionValue, getTablesInvolved, isAggregator, isPurelyFunctional, toSQLStringgetIncludesNullBooleanArrayResult copy()
DBExpressionImmutability in DBvolution is maintain by internally copying objects.
This method enables immutability by performing a deep copy of the object.
Singletons may return themselves but all other objects must return a new instance with copies of all mutable fields.
Support DBvolution at Patreon
copy in interface DBExpressionDBValueCopyright © 2017. All Rights Reserved.