io.codemodder.plugins.llm.BinaryThreatRisk Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codemodder-plugin-llm Show documentation
Show all versions of codemodder-plugin-llm Show documentation
Codemod plugin for augmenting transformation with LLM assisted analysis and fixes
package io.codemodder.plugins.llm;
/** The possible outcomes of a binary risk analysis -- "high" or "low". */
public enum BinaryThreatRisk {
HIGH,
LOW;
}