com.contrastsecurity.sarif.Role Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sarif Show documentation
Show all versions of java-sarif Show documentation
POJOs generated from the JSON schema for Static Analysis Results Interchange Format (SARIF)
package com.contrastsecurity.sarif;
import java.util.HashMap;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
public enum Role {
ANALYSIS_TARGET("analysisTarget"),
ATTACHMENT("attachment"),
RESPONSE_FILE("responseFile"),
RESULT_FILE("resultFile"),
STANDARD_STREAM("standardStream"),
TRACED_FILE("tracedFile"),
UNMODIFIED("unmodified"),
MODIFIED("modified"),
ADDED("added"),
DELETED("deleted"),
RENAMED("renamed"),
UNCONTROLLED("uncontrolled"),
DRIVER("driver"),
EXTENSION("extension"),
TRANSLATION("translation"),
TAXONOMY("taxonomy"),
POLICY("policy"),
REFERENCED_ON_COMMAND_LINE("referencedOnCommandLine"),
MEMORY_CONTENTS("memoryContents"),
DIRECTORY("directory"),
USER_SPECIFIED_CONFIGURATION("userSpecifiedConfiguration"),
TOOL_SPECIFIED_CONFIGURATION("toolSpecifiedConfiguration"),
DEBUG_OUTPUT_FILE("debugOutputFile");
private final String value;
private final static Map CONSTANTS = new HashMap();
static {
for (Role c: values()) {
CONSTANTS.put(c.value, c);
}
}
private Role(String value) {
this.value = value;
}
@Override
public String toString() {
return this.value;
}
@JsonValue
public String value() {
return this.value;
}
@JsonCreator
public static Role fromValue(String value) {
Role constant = CONSTANTS.get(value);
if (constant == null) {
throw new IllegalArgumentException(value);
} else {
return constant;
}
}
}