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