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.gradle Show documentation
Show all versions of org.bndtools.headless.build.plugin.gradle Show documentation
org.bndtools.headless.build.plugin.gradle
The 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