All Downloads are FREE. Search and download functionalities are using the official Maven repository.

chaschev.util.MapObjectList Maven / Gradle / Ivy

There is a newer version: 1.4
Show newest version
package chaschev.util;

import java.util.Collection;
import java.util.Iterator;

/**
 * User: chaschev
 * Date: 6/9/13
 */

public interface MapObjectList extends Iterable {
    Iterator iterator();
    MapObjectBase get(int n);

    MapObjectMap having(
        String field1, Object value1);

    MapObjectMap having(
        String field1, Object value1,
        String field2, Object value2);

    int size();

    MapObjectBase dup();

    Collection asCollection();
}