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

io.ebeaninternal.json.ModifyAwareIterator Maven / Gradle / Ivy

There is a newer version: 15.6.0
Show newest version
package io.ebeaninternal.json;

import java.util.Iterator;

/**
 * Wraps an iterator for the purposes of detecting modifications.
 */
public class ModifyAwareIterator implements Iterator {

  private final ModifyAwareOwner owner;

  private final Iterator it;

  /**
   * Create with an Owner and the underlying Iterator this wraps.
   * 

* The owner is notified of the removals. *

*/ public ModifyAwareIterator(ModifyAwareOwner owner, Iterator it) { this.owner = owner; this.it = it; } @Override public boolean hasNext() { return it.hasNext(); } @Override public E next() { return it.next(); } @Override public void remove() { owner.markAsModified(); it.remove(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy