Package com.amazon.ion.util
Class IonValueUtils
- java.lang.Object
-
- com.amazon.ion.util.IonValueUtils
-
public class IonValueUtils extends java.lang.Object
Utility methods for working withIonValue
s.
-
-
Constructor Summary
Constructors Constructor Description IonValueUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
anyNull(IonValue value)
Determines whether a value is Java null, or any Ion null.
-
-
-
Method Detail
-
anyNull
public static final boolean anyNull(IonValue value)
Determines whether a value is Java null, or any Ion null.- Parameters:
value
- may be null.- Returns:
(value == null || value.isNullValue())
-
-