public interface NullValueProvider
| Modifier and Type | Method and Description |
|---|---|
boolean |
getBooleanValue() |
double |
getDoubleValue() |
int |
getIntValue() |
long |
getLongValue() |
String |
getStringValue() |
boolean |
isNull(boolean value)
Checks if the
boolean is equal to getBooleanValue(). |
boolean |
isNull(double value)
Checks if the
double is equal to getDoubleValue(). |
boolean |
isNull(int value)
Checks if the
int is equal to getIntValue(). |
boolean |
isNull(long value)
Checks if the
long is equal to getLongValue(). |
boolean |
isNull(String string)
Checks if the
String is equal to getStringValue(). |
boolean isNull(boolean value)
boolean is equal to getBooleanValue().value - the value to be checkedtrue if the specified boolean is nullboolean isNull(int value)
int is equal to getIntValue().value - the value to be checkedtrue if the specified int is considered nullboolean isNull(long value)
long is equal to getLongValue().value - the value to be checkedtrue if the specified long is considered nullboolean isNull(double value)
double is equal to getDoubleValue().value - the value to be checkedtrue if the specified long is nullboolean isNull(String string)
String is equal to getStringValue().string - the string to be checkedtrue if the specified String is considered nullboolean getBooleanValue()
booleanint getIntValue()
intlong getLongValue()
longdouble getDoubleValue()
doubleString getStringValue()
StringCopyright © 2021. All rights reserved.