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

com.zipwhip.util.LocalDirectory Maven / Gradle / Ivy

package com.zipwhip.util;

import java.io.Serializable;
import java.util.Set;

/**
 * Created by IntelliJ IDEA.
 * User: Michael
 * Date: 11/1/11
 * Time: 6:20 PM
 * 

* For local in JVM directories */ public interface LocalDirectory extends Directory, Serializable { /** * Returns a set of the keys that have been used in the past. There is no guarantee that each key has values. * * For example, clearing a collection does not remove the key from the set. If it does, that's an implementation * detail and not a guarantee across implementations. * * @return */ Set keySet(); /** * Returns if the directory has no data. * * @return */ boolean isEmpty(); void clear(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy