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

com.venky.csfj.util.Domain Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.venky.csfj.util;

import java.util.Iterator;

/**
 *
 * @author venky
 */
public interface Domain extends Iterable {
    public boolean contains(Object value);
    public T peek();
    public T pop();
    public T push(T value);
    public boolean isEmpty();
    public Iterator iterator();
    public int size();
    public T get(int i);
    public int indexOf(Object value);
    public int lastIndexOf(Object value);
    public boolean remove(Object value);
    public void clear();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy