![JAR search and dependency download from the Maven repository](/logo.png)
com.cflint.Bugs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of CFLint Show documentation
Show all versions of CFLint Show documentation
A static code analysis tool for ColdFusion (in the spirit of FindBugs and Lint). With CFLint, you are able to analyze your ColdFusion code base for code violations.
package com.cflint;
/**
* A few commonly use constants used when referring to bugs.
*/
public class Bugs {
/**
* Count.
*/
public static final String COUNT = "count";
/**
* Code.
*/
public static final String CODE = "code";
/**
* ID.
*/
public static final String ID = "id";
/**
* Issue.
*/
public static final String ISSUE = "issue";
/**
* Severity.
*/
public static final String SEVERITY = "severity";
private Bugs() {
throw new IllegalStateException("Bugs utility class");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy