Package org.robolectric.res.android
Enum DataType
- All Implemented Interfaces:
- Serializable,- Comparable<DataType>,- java.lang.constant.Constable
public enum DataType extends Enum<DataType>
Resource type codes.
- 
Nested Class Summary
- 
Enum Constant SummaryEnum Constants Enum Constant Description ATTRIBUTEdataholds an attribute resource identifier.DIMENSIONdataholds a complex number encoding a dimension value, such as "100in".DYNAMIC_ATTRIBUTEdataholds an attribute resource identifier, which needs to be resolved before it can be used like a TYPE_ATTRIBUTE.DYNAMIC_REFERENCEdataholds a dynamicResourceTableChunkentry reference.FLOATdataholds a single-precision floating point number.FRACTIONdataholds a complex number encoding a fraction of a container.INT_BOOLEANdatais either 0 (false) or 1 (true).INT_COLOR_ARGB4datais a raw integer value of the form #argb.INT_COLOR_ARGB8datais a raw integer value of the form #aarrggbb.INT_COLOR_RGB4datais a raw integer value of the form #rgb.INT_COLOR_RGB8datais a raw integer value of the form #rrggbb.INT_DECdatais a raw integer value of the form n..n.INT_HEXdatais a raw integer value of the form 0xn..n.NULLdatais either 0 (undefined) or 1 (empty).REFERENCEdataholds aResourceTableChunkentry reference.STRINGdataholds an index into the containing resource table's string pool.
- 
Field SummaryFields Modifier and Type Field Description static intTYPE_FIRST_INTstatic intTYPE_LAST_INT
- 
Method SummaryModifier and Type Method Description bytecode()static DataTypefromCode(byte code)static DataTypefromCode(int code)static DataTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DataType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
NULLdatais either 0 (undefined) or 1 (empty).
- 
REFERENCEdataholds aResourceTableChunkentry reference.
- 
ATTRIBUTEdataholds an attribute resource identifier.
- 
STRINGdataholds an index into the containing resource table's string pool.
- 
FLOATdataholds a single-precision floating point number.
- 
DIMENSIONdataholds a complex number encoding a dimension value, such as "100in".
- 
FRACTIONdataholds a complex number encoding a fraction of a container.
- 
DYNAMIC_REFERENCEdataholds a dynamicResourceTableChunkentry reference.
- 
DYNAMIC_ATTRIBUTEdataholds an attribute resource identifier, which needs to be resolved before it can be used like a TYPE_ATTRIBUTE.
- 
INT_DECdatais a raw integer value of the form n..n.
- 
INT_HEXdatais a raw integer value of the form 0xn..n.
- 
INT_BOOLEANdatais either 0 (false) or 1 (true).
- 
INT_COLOR_ARGB8datais a raw integer value of the form #aarrggbb.
- 
INT_COLOR_RGB8datais a raw integer value of the form #rrggbb.
- 
INT_COLOR_ARGB4datais a raw integer value of the form #argb.
- 
INT_COLOR_RGB4datais a raw integer value of the form #rgb.
 
- 
- 
Field Details- 
TYPE_FIRST_INTpublic static final int TYPE_FIRST_INT
- 
TYPE_LAST_INTpublic static final int TYPE_LAST_INT
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
- 
codepublic byte code()
- 
fromCode
- 
fromCode
 
-