Uses of Class
com.android.dx.dex.file.Item

Packages that use Item
com.android.dx.dex.file   
 

Uses of Item in com.android.dx.dex.file
 

Subclasses of Item in com.android.dx.dex.file
 class AnnotationItem
          Single annotation, which consists of a type and a set of name-value element pairs.
 class AnnotationsDirectoryItem
          Per-class directory of annotations.
 class AnnotationSetItem
          Set of annotations, where no annotation type appears more than once.
 class AnnotationSetRefItem
          Indirect reference to an AnnotationSetItem.
 class ClassDataItem
          Representation of all the parts of a Dalvik class that are generally "inflated" into an in-memory representation at runtime.
 class ClassDefItem
          Representation of a Dalvik class, which is basically a set of members (fields or methods) along with a few more pieces of information.
 class CodeItem
          Representation of all the parts needed for concrete methods in a dex file.
 class DebugInfoItem
           
 class EncodedArrayItem
          Encoded array of constant values.
 class FieldIdItem
          Representation of a field reference inside a Dalvik file.
 class HeaderItem
          File header section of a .dex file.
 class IdItem
          Representation of a reference to an item inside a Dalvik file.
 class IndexedItem
          An item in a Dalvik file which is referenced by index.
 class MapItem
          Class that represents a map item.
 class MemberIdItem
          Representation of a member (field or method) reference inside a Dalvik file.
 class MethodIdItem
          Representation of a method reference inside a Dalvik file.
 class OffsettedItem
          An item in a Dalvik file which is referenced by absolute offset.
 class ProtoIdItem
          Representation of a method prototype reference inside a Dalvik file.
 class StringDataItem
          Representation of string data for a particular string, in a Dalvik file.
 class StringIdItem
          Representation of a string inside a Dalvik file.
 class TypeIdItem
          Representation of a type reference inside a Dalvik file.
 class TypeListItem
          Representation of a list of class references.
 class UniformListItem<T extends OffsettedItem>
          Class that represents a contiguous list of uniform items.
 

Methods in com.android.dx.dex.file that return types with arguments of type Item
 Collection<? extends Item> MixedItemSection.items()
          Gets the collection of all the items in this section.
 Collection<? extends Item> FieldIdsSection.items()
          Gets the collection of all the items in this section.
 Collection<? extends Item> ProtoIdsSection.items()
          Gets the collection of all the items in this section.
 Collection<? extends Item> TypeIdsSection.items()
          Gets the collection of all the items in this section.
 Collection<? extends Item> ClassDefsSection.items()
          Gets the collection of all the items in this section.
 Collection<? extends Item> MethodIdsSection.items()
          Gets the collection of all the items in this section.
 Collection<? extends Item> HeaderSection.items()
          Gets the collection of all the items in this section.
 Collection<? extends Item> StringIdsSection.items()
          Gets the collection of all the items in this section.
abstract  Collection<? extends Item> Section.items()
          Gets the collection of all the items in this section.
 

Methods in com.android.dx.dex.file with parameters of type Item
 void Statistics.add(Item item)
          Adds the given item to the statistics.
 int MixedItemSection.getAbsoluteItemOffset(Item item)
          Returns the absolute file offset of the given item which must be contained in this section.
 int UniformItemSection.getAbsoluteItemOffset(Item item)
          Returns the absolute file offset of the given item which must be contained in this section.
abstract  int Section.getAbsoluteItemOffset(Item item)
          Returns the absolute file offset of the given item which must be contained in this section.
 



Copyright © 2015. All rights reserved.