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

org.bndtools.utils.copy.bundleresource.CopyMode Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package org.bndtools.utils.copy.bundleresource;

public enum CopyMode {
	/**
	 * Add if not already present.
	 */
	ADD,

	/**
	 * Add and overwrite if already present.
	 */
	REPLACE,

	/**
	 * Remove if present.
	 */
	REMOVE,

	/**
	 * Do nothing, just check if the file exists.
	 */
	CHECK

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy