-
public final class DeepLinkResult
-
-
Field Summary
Fields Modifier and Type Field Description private final BooleanisSuccessfulprivate final StringuriStringprivate final Stringerrorprivate final ThrowableerrorThrowableprivate final DeepLinkMatchResultdeepLinkMatchResultprivate final DeepLinkMethodResultmethodResultprivate final Map<String, String>parametersprivate final DeepLinkHandlerResult<Object>deepLinkHandlerResult
-
Constructor Summary
Constructors Constructor Description DeepLinkResult(Boolean isSuccessful, String uriString, String error, Throwable errorThrowable, DeepLinkMatchResult deepLinkMatchResult, DeepLinkMethodResult methodResult, Map<String, String> parameters, DeepLinkHandlerResult<Object> deepLinkHandlerResult)
-
Method Summary
Modifier and Type Method Description final BooleangetIsSuccessful()final StringgetUriString()final StringgetError()final ThrowablegetErrorThrowable()final DeepLinkMatchResultgetDeepLinkMatchResult()final DeepLinkMethodResultgetMethodResult()final Map<String, String>getParameters()final DeepLinkHandlerResult<Object>getDeepLinkHandlerResult()final Stringerror()This exists so that calls from Kotlin code error() are maintained across major version 4. StringtoString()-
-
Constructor Detail
-
DeepLinkResult
DeepLinkResult(Boolean isSuccessful, String uriString, String error, Throwable errorThrowable, DeepLinkMatchResult deepLinkMatchResult, DeepLinkMethodResult methodResult, Map<String, String> parameters, DeepLinkHandlerResult<Object> deepLinkHandlerResult)
-
-
Method Detail
-
getIsSuccessful
final Boolean getIsSuccessful()
-
getUriString
final String getUriString()
-
getErrorThrowable
final Throwable getErrorThrowable()
-
getDeepLinkMatchResult
final DeepLinkMatchResult getDeepLinkMatchResult()
-
getMethodResult
final DeepLinkMethodResult getMethodResult()
-
getParameters
final Map<String, String> getParameters()
-
getDeepLinkHandlerResult
final DeepLinkHandlerResult<Object> getDeepLinkHandlerResult()
-
error
final String error()
This exists so that calls from Kotlin code error() are maintained across major version 4. This will be removed in DLD 5.x.x
-
-
-
-