org.bndtools.utils.copy.bundleresource.CopyMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.bndtools.headless.build.plugin.ant Show documentation
Show all versions of org.bndtools.headless.build.plugin.ant Show documentation
org.bndtools.headless.build.plugin.ant
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
}