public abstract class AbstractNullValueProvider extends Object implements NullValueProvider
NullValueProvider with common methods implemented.| Constructor and Description |
|---|
AbstractNullValueProvider() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isNull(boolean value)
Checks if the
boolean is equal to NullValueProvider.getBooleanValue(). |
boolean |
isNull(double value)
Checks if the
double is equal to NullValueProvider.getDoubleValue(). |
boolean |
isNull(int value)
Checks if the
int is equal to NullValueProvider.getIntValue(). |
boolean |
isNull(long value)
Checks if the
long is equal to NullValueProvider.getLongValue(). |
boolean |
isNull(String string)
Checks if the
String is equal to NullValueProvider.getStringValue(). |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetBooleanValue, getDoubleValue, getIntValue, getLongValue, getStringValuepublic boolean isNull(boolean value)
NullValueProviderboolean is equal to NullValueProvider.getBooleanValue().isNull in interface NullValueProvidervalue - the value to be checkedtrue if the specified boolean is nullpublic boolean isNull(int value)
NullValueProviderint is equal to NullValueProvider.getIntValue().isNull in interface NullValueProvidervalue - the value to be checkedtrue if the specified int is considered nullpublic boolean isNull(long value)
NullValueProviderlong is equal to NullValueProvider.getLongValue().isNull in interface NullValueProvidervalue - the value to be checkedtrue if the specified long is considered nullpublic boolean isNull(double value)
NullValueProviderdouble is equal to NullValueProvider.getDoubleValue().isNull in interface NullValueProvidervalue - the value to be checkedtrue if the specified long is nullpublic boolean isNull(String string)
NullValueProviderString is equal to NullValueProvider.getStringValue().isNull in interface NullValueProviderstring - the string to be checkedtrue if the specified String is considered nullCopyright © 2021. All rights reserved.