RestrictTo.Scope
public
static
final
enum
RestrictTo.Scope
extends Enum<RestrictTo.Scope>
java.lang.Object | ||
↳ | java.lang.Enum<android.support.annotation.RestrictTo.Scope> | |
↳ | android.support.annotation.RestrictTo.Scope |
Summary
Enum values | |
---|---|
RestrictTo.Scope |
GROUP_ID
This field is deprecated.
Use |
RestrictTo.Scope |
LIBRARY
Restrict usage to code within the same library (e.g. |
RestrictTo.Scope |
LIBRARY_GROUP
Restrict usage to code within the same group of libraries. |
RestrictTo.Scope |
SUBCLASSES
Restrict usage to subclasses of the enclosing class. |
RestrictTo.Scope |
TESTS
Restrict usage to tests. |
Public methods | |
---|---|
static
RestrictTo.Scope
|
valueOf(String name)
|
static
final
Scope[]
|
values()
|
Inherited methods | |
---|---|
![]()
java.lang.Enum
| |
![]()
java.lang.Object
| |
![]()
java.lang.Comparable
|
Enum values
GROUP_ID
RestrictTo.Scope GROUP_ID
This field is deprecated.
Use LIBRARY_GROUP
instead
Restrict usage to code within the same group ID (based on gradle
group ID). This is an alias for LIBRARY_GROUP
.