public class Null extends Object
Constructor and Description |
---|
Null() |
Modifier and Type | Method and Description |
---|---|
static boolean |
isAnyEmpty(String... strings)
Check if there is any null or empty string value in a set of strings
|
static boolean |
isAnyNull(Object... objs)
Check if there is any null value in a set of objects
|
static boolean |
isNotNull(Object... objs)
Check if no value is a null values
|
static boolean |
isNull(Object... objs)
Check if all values are null values
|
static <T> T |
nvl(T test,
T replace)
Check if there is a null value.
|
public static <T> T nvl(T test, T replace)
test
- Checked valuereplace
- Replace valuepublic static boolean isAnyNull(Object... objs)
public static boolean isAnyEmpty(String... strings)
public static boolean isNull(Object... objs)
public static boolean isNotNull(Object... objs)
Copyright © 2017. All rights reserved.