/*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see .
*/
package com.l2jserver.util;
import java.util.List;
import javolution.util.FastList;
/**
*
* A custom version of LinkedList with extension for iterating without using temporary collection
* It`s provide synchronization lock when iterating if needed
*
* @author Julian Version 1.0.1 (2008-02-07)
* Changes:
* 1.0.0 - Initial version.
* 1.0.1 - Made forEachP() final.
*/
public class L2FastList extends FastList
{
static final long serialVersionUID = 1L;
/**
* Public inner interface used by ForEach iterations
*
* @author Julian
*/
public interface I2ForEach {
public boolean ForEach(T obj);
}
public L2FastList() {
super();
}
public L2FastList(List extends T> list) {
super(list);
}
/**
* Public method that iterate entire collection.
*
* @param func - a class method that must be executed on every element of collection.
* @return - returns true if entire collection is iterated, false if it`s been interrupted by
* check method (I2ForEach.forEach())
*/
public boolean forEach(I2ForEach func) {
for (T e: this)
if (!func.ForEach(e)) return false;
return true;
}
}