Package com.facebook.buck.android.aapt
Enum RDotTxtEntry.RType
- java.lang.Object
-
- java.lang.Enum<RDotTxtEntry.RType>
-
- com.facebook.buck.android.aapt.RDotTxtEntry.RType
-
- All Implemented Interfaces:
Serializable
,Comparable<RDotTxtEntry.RType>
- Enclosing class:
- RDotTxtEntry
public static enum RDotTxtEntry.RType extends Enum<RDotTxtEntry.RType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static RDotTxtEntry.RType
valueOf(String name)
Returns the enum constant of this type with the specified name.static RDotTxtEntry.RType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANIM
public static final RDotTxtEntry.RType ANIM
-
ANIMATOR
public static final RDotTxtEntry.RType ANIMATOR
-
ARRAY
public static final RDotTxtEntry.RType ARRAY
-
ATTR
public static final RDotTxtEntry.RType ATTR
-
BOOL
public static final RDotTxtEntry.RType BOOL
-
COLOR
public static final RDotTxtEntry.RType COLOR
-
DIMEN
public static final RDotTxtEntry.RType DIMEN
-
DRAWABLE
public static final RDotTxtEntry.RType DRAWABLE
-
FRACTION
public static final RDotTxtEntry.RType FRACTION
-
FONT
public static final RDotTxtEntry.RType FONT
-
ID
public static final RDotTxtEntry.RType ID
-
INTEGER
public static final RDotTxtEntry.RType INTEGER
-
INTERPOLATOR
public static final RDotTxtEntry.RType INTERPOLATOR
-
LAYOUT
public static final RDotTxtEntry.RType LAYOUT
-
MENU
public static final RDotTxtEntry.RType MENU
-
NAVIGATION
public static final RDotTxtEntry.RType NAVIGATION
-
MIPMAP
public static final RDotTxtEntry.RType MIPMAP
-
PLURALS
public static final RDotTxtEntry.RType PLURALS
-
RAW
public static final RDotTxtEntry.RType RAW
-
STRING
public static final RDotTxtEntry.RType STRING
-
STYLE
public static final RDotTxtEntry.RType STYLE
-
STYLEABLE
public static final RDotTxtEntry.RType STYLEABLE
-
TRANSITION
public static final RDotTxtEntry.RType TRANSITION
-
XML
public static final RDotTxtEntry.RType XML
-
-
Method Detail
-
values
public static RDotTxtEntry.RType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RDotTxtEntry.RType c : RDotTxtEntry.RType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RDotTxtEntry.RType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<RDotTxtEntry.RType>
-
-