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

com.medallia.word2vec.util.AC Maven / Gradle / Ivy

There is a newer version: 0.10.3
Show newest version
package com.medallia.word2vec.util;

/** Extension of {@link AutoCloseable} where {@link #close()} does not throw any exception */
public interface AC extends AutoCloseable {
	@Override void close();

	/** {@link AC} that does nothing */
	AC NOTHING = new AC() {
		@Override public void close() { }
	};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy