Uses of Class
org.opendaylight.yangtools.concepts.CheckedValue
-
Packages that use CheckedValue Package Description org.opendaylight.yangtools.concepts Concept used widely across OpenDaylight code base.org.opendaylight.yangtools.yang.data.util -
-
Uses of CheckedValue in org.opendaylight.yangtools.concepts
Methods in org.opendaylight.yangtools.concepts that return CheckedValue Modifier and Type Method Description <U> CheckedValue<U,E>
CheckedValue. flatMap(Function<? super T,CheckedValue<U,E>> mapper)
<U> CheckedValue<U,E>
CheckedValue. map(Function<? super T,U> mapper)
<X extends Exception>
CheckedValue<T,X>CheckedValue. mapException(Function<? super E,X> mapper)
static <T,E extends Exception>
CheckedValue<T,E>CheckedValue. ofException(E cause)
Create a new instance containing anException
.static <T,E extends Exception>
CheckedValue<T,E>CheckedValue. ofValue(T value)
Create a new instance containing specified value.static <T,U,E extends Exception>
CheckedValue<T,E>CheckedValue. ofVariant(Either<T,U> variant, Function<U,E> mapper)
Convert a Variant into aCheckedValue
, converting the second value into an exception.Method parameters in org.opendaylight.yangtools.concepts with type arguments of type CheckedValue Modifier and Type Method Description <U> CheckedValue<U,E>
CheckedValue. flatMap(Function<? super T,CheckedValue<U,E>> mapper)
-
Uses of CheckedValue in org.opendaylight.yangtools.yang.data.util
Methods in org.opendaylight.yangtools.yang.data.util that return CheckedValue Modifier and Type Method Description @NonNull CheckedValue<@NonNull DataSchemaContextTree.NodeAndStack,@NonNull IllegalArgumentException>
DataSchemaContextTree. enterPath(YangInstanceIdentifier path)
Find a child node as identified by an absoluteYangInstanceIdentifier
and return it along with a suitably initializedSchemaInferenceStack
.
-