- java.lang.Object
-
- com.orchestranetworks.addon.dex.mapping.FieldMappingList<SC,TC>
-
-
Constructor Summary
Constructors Constructor Description FieldMappingList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(FieldMapping<SC,TC> fieldMapping)Adds aFieldMappingobject to this list.voidaddAll(FieldMappingList<SC,TC> fieldMappingList)Adds all of the elements in the specifiedFieldMappingListinstance to the end of this list.booleancontains(FieldMapping<SC,TC> fieldMapping)Returnstrueif this contains the specified element.intgetSize()Returns the number of elements in this list.booleanisEmpty()Returnstrueif this list contains no elements.java.util.Iterator<FieldMapping<SC,TC>>iterator()Returns an iterator over the elements in this list in proper sequence.
-
-
-
Method Detail
-
add
public void add(FieldMapping<SC,TC> fieldMapping)
Adds aFieldMappingobject to this list.
-
getSize
public int getSize()
Returns the number of elements in this list.
-
isEmpty
public boolean isEmpty()
Returnstrueif this list contains no elements.
-
iterator
public java.util.Iterator<FieldMapping<SC,TC>> iterator()
Returns an iterator over the elements in this list in proper sequence.
-
addAll
public void addAll(FieldMappingList<SC,TC> fieldMappingList)
Adds all of the elements in the specifiedFieldMappingListinstance to the end of this list.
-
contains
public boolean contains(FieldMapping<SC,TC> fieldMapping)
Returnstrueif this contains the specified element.
-
-