io.codemodder.plugins.maven.operator.Kind Maven / Gradle / Ivy
package io.codemodder.plugins.maven.operator;
/**
* Represents a Kind of Version Pinning in a Maven File, representing the `-source` and `-target`
* flags as well as the newer `-release` flag of `javac`.
*/
enum Kind {
SOURCE,
TARGET,
RELEASE
}