public enum AndroidResourceTypeEnum extends Enum<AndroidResourceTypeEnum>
R
resource class associated.Enum Constant and Description |
---|
FRAME_ANIMATION
Represents ANdroid frame animation, which contains resources
in
res/drawable folder. |
PROPERTY_ANIMATION
Represent Android property animation type, which contains
resources in
res/animator folder. |
TWEEN_ANIMATION
Represents Android Tween animation type, which contains resources in
res/anim folder. |
Modifier and Type | Method and Description |
---|---|
String |
getResourceClassName()
Returns R resource class name.
|
static AndroidResourceTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AndroidResourceTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AndroidResourceTypeEnum PROPERTY_ANIMATION
res/animator
folder.public static final AndroidResourceTypeEnum TWEEN_ANIMATION
res/anim
folder.public static final AndroidResourceTypeEnum FRAME_ANIMATION
res/drawable
folder.public static AndroidResourceTypeEnum[] values()
for (AndroidResourceTypeEnum c : AndroidResourceTypeEnum.values()) System.out.println(c);
public static AndroidResourceTypeEnum 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 nullpublic String getResourceClassName()
Copyright © 2012-2014 Vektor Software. All Rights Reserved.