Interface ContainerAdapter<C>
-
- Type Parameters:
C- The container class
- All Superinterfaces:
java.lang.Iterable<java.lang.Object>
- All Known Subinterfaces:
MapContainerAdapter<C>
- All Known Implementing Classes:
ArrayAdapter,ElementContainerAdapter,JDKCollectionAdapter,JDKListAdapter,JDKMapAdapter,OptionalAdapter
public interface ContainerAdapter<C> extends java.lang.Iterable<java.lang.Object>An adapter for container classes allowing DN to operate on them in a generic form instead of depending directly on the JDK containers.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclear()CgetContainer()
-
-
-
Method Detail
-
getContainer
C getContainer()
-
clear
void clear()
-
-