- java.lang.Object
-
- com.orchestranetworks.addon.dex.mapping.TableMappingList<SC,TC>
-
-
Constructor Summary
Constructors Constructor Description TableMappingList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(TableMapping<SC,TC> tableMapping)Adds aTableMappinginstance to this list.voidaddAll(TableMappingList<SC,TC> tableMappingList)Adds all of the elements in the specifiedTableMappingListinstance to the end of this list.intgetSize()Returns the number of elements in this list.booleanisEmpty()Returnstrueif this list contains no elements.java.util.Iterator<TableMapping<SC,TC>>iterator()Returns an iterator over the elements in this list in proper sequence.
-
-
-
Method Detail
-
add
public void add(TableMapping<SC,TC> tableMapping)
Adds aTableMappinginstance 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<TableMapping<SC,TC>> iterator()
Returns an iterator over the elements in this list in proper sequence.
-
addAll
public void addAll(TableMappingList<SC,TC> tableMappingList)
Adds all of the elements in the specifiedTableMappingListinstance to the end of this list.
-
-