Interface PermissionCheckResult


public interface PermissionCheckResult
Provides single boolean yes/no decision based on PermissionCheckValue
  • Method Summary

    Modifier and Type
    Method
    Description
    Allows to get detailed information about permission checking outcome.
    boolean
    Returns true if the permission is denied.
    boolean
    Returns 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 of isGranted().
    • getCheckValue

      PermissionCheckValue getCheckValue()
      Allows to get detailed information about permission checking outcome.