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

org.fulib.fx.data.TraversableQueue Maven / Gradle / Ivy

package org.fulib.fx.data;

import java.util.List;

public interface TraversableQueue {

    void insert(T value);

    T peek();

    T back();

    T forward();

    T current();

    List entries();

    int length();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy