Interface PermissionCheckResult
public interface PermissionCheckResult
Provides single boolean yes/no decision based on
PermissionCheckValue-
Method Summary
Modifier and TypeMethodDescriptionAllows to get detailed information about permission checking outcome.booleanisDenied()Returns true if the permission is denied.booleanReturns true if the permission is granted
-
Method Details
-
isGranted
boolean isGranted()Returns true if the permission is granted -
isDenied
boolean isDenied()Returns true if the permission is denied. This is a convenience method, it always returns negated value ofisGranted(). -
getCheckValue
PermissionCheckValue getCheckValue()Allows to get detailed information about permission checking outcome.
-