diff --git a/core/java/android/provider/BlockedNumberContract.java b/core/java/android/provider/BlockedNumberContract.java index 92a22d101193a..fb11d00cec463 100644 --- a/core/java/android/provider/BlockedNumberContract.java +++ b/core/java/android/provider/BlockedNumberContract.java @@ -237,6 +237,8 @@ public class BlockedNumberContract { * *
Note that if the {@link #canCurrentUserBlockNumbers} is {@code false} for the user * context {@code context}, this method will throw a {@link SecurityException}. + * + * @return {@code true} if the {@code phoneNumber} is blocked. */ @WorkerThread public static boolean isBlocked(Context context, String phoneNumber) { @@ -248,8 +250,6 @@ public class BlockedNumberContract { /** * Unblocks the {@code phoneNumber} if it is blocked. * - *
Returns the number of rows deleted in the blocked number provider as a result of unblock. - * *
This deletes all rows where the {@code phoneNumber} matches the * {@link BlockedNumbers#COLUMN_ORIGINAL_NUMBER} column or the E164 representation of the * {@code phoneNumber} matches the {@link BlockedNumbers#COLUMN_E164_NUMBER} column. @@ -261,6 +261,8 @@ public class BlockedNumberContract { * *
Note that if the {@link #canCurrentUserBlockNumbers} is {@code false} for the user * context {@code context}, this method will throw a {@link SecurityException}. + * + * @return the number of rows deleted in the blocked number provider as a result of unblock. */ @WorkerThread public static int unblock(Context context, String phoneNumber) { @@ -270,8 +272,10 @@ public class BlockedNumberContract { } /** - * Returns {@code true} if blocking numbers is supported for the current user. + * Checks if blocking numbers is supported for the current user. *
Typically, blocking numbers is only supported for one user at a time. + * + * @return {@code true} if the current user can block numbers. */ public static boolean canCurrentUserBlockNumbers(Context context) { final Bundle res = context.getContentResolver().call(