Uses of Class
org.nd4j.common.primitives.Optional
-
Packages that use Optional Package Description org.nd4j.common.primitives -
-
Uses of Optional in org.nd4j.common.primitives
Methods in org.nd4j.common.primitives that return Optional Modifier and Type Method Description static <T> Optional<T>Optional. empty()Returns an empty Optional instance.static <T> Optional<T>Optional. of(T value)Returns an Optional with the specified present non-null value.static <T> Optional<T>Optional. ofNullable(T value)Returns an Optional describing the specified value, if non-null, otherwise returns an empty Optional.
-