Interface PermissionCheckResult
-
public interface PermissionCheckResultProvides single boolean yes/no decision based onPermissionCheckValue
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PermissionCheckValuegetCheckValue()Allows to get detailed information about permission checking outcome.booleanisDenied()Returns true if the permission is denied.booleanisGranted()Returns true if the permission is granted
-
-
-
Method Detail
-
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.
-
-