public static enum ResourceUrl.UrlType extends java.lang.Enum<ResourceUrl.UrlType>
| Enum Constant and Description |
|---|
ATTR
Reference of the form
android:textColor. |
CREATE
Reference of the form
@+id/foo. |
NORMAL
Reference of the form
@string/foo. |
THEME
Reference of the form
?android:textColor. |
| Modifier and Type | Method and Description |
|---|---|
static ResourceUrl.UrlType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResourceUrl.UrlType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceUrl.UrlType NORMAL
@string/foo.public static final ResourceUrl.UrlType CREATE
@+id/foo.public static final ResourceUrl.UrlType THEME
?android:textColor.public static final ResourceUrl.UrlType ATTR
android:textColor.public static ResourceUrl.UrlType[] values()
for (ResourceUrl.UrlType c : ResourceUrl.UrlType.values()) System.out.println(c);
public static ResourceUrl.UrlType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null