public interface

IUniqueQueue

implements ISortedList<T> IQueue<T>
package org.andengine.util.adt.queue;

import org.andengine.util.adt.list.ISortedList;


/**
 * (c) Zynga 2012
 *
 * @author Nicolas Gramlich <ngramlich@zynga.com>
 * @since 15:37:19 - 01.02.2012
 */
public interface IUniqueQueue<T> extends IQueue<T>, ISortedList<T> {
	// ===========================================================
	// Constants
	// ===========================================================

	// ===========================================================
	// Methods
	// ===========================================================
}