RestrictTo
public
abstract
@interface
RestrictTo
implements
Annotation
androidx.annotation.RestrictTo |
Denotes that the annotated element should only be accessed from within a
specific scope (as defined by RestrictTo.Scope
).
Example of restricting usage within a library (based on gradle group ID):
@RestrictTo(GROUP_ID)
public void resetPaddingToInitialValues() { ...
Example of restricting usage to tests:
@RestrictScope(TESTS)
public abstract int getUserId();
Example of restricting usage to subclasses:
@RestrictScope(SUBCLASSES)
public void onDrawForeground(Canvas canvas) { ...
Summary
Nested classes | |
---|---|
enum |
RestrictTo.Scope
|
Public methods | |
---|---|
Scope[]
|
value()
The scope to which usage should be restricted. |
Inherited methods | |
---|---|
Public methods
Content and code samples on this page are subject to the licenses described in the Content License. Java is a registered trademark of Oracle and/or its affiliates.