public static enum AndroidDescriptor.TypeScope extends Enum<AndroidDescriptor.TypeScope>
| Enum Constant and Description |
|---|
EXTERNAL
Denotes a type that comes from a dependency of the local project.
|
LOCAL
Denotes a type that comes from the local project.
|
| Modifier and Type | Method and Description |
|---|---|
static AndroidDescriptor.TypeScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AndroidDescriptor.TypeScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AndroidDescriptor.TypeScope LOCAL
public static final AndroidDescriptor.TypeScope EXTERNAL
public static AndroidDescriptor.TypeScope[] values()
for (AndroidDescriptor.TypeScope c : AndroidDescriptor.TypeScope.values()) System.out.println(c);
public static AndroidDescriptor.TypeScope valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2014–2025. All rights reserved.