Package org.sonar.java.checks.verifier
Enum CheckVerifier.IssueAttribute
- java.lang.Object
-
- java.lang.Enum<CheckVerifier.IssueAttribute>
-
- org.sonar.java.checks.verifier.CheckVerifier.IssueAttribute
-
- All Implemented Interfaces:
Serializable,Comparable<CheckVerifier.IssueAttribute>
- Enclosing class:
- CheckVerifier
public static enum CheckVerifier.IssueAttribute extends Enum<CheckVerifier.IssueAttribute>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EFFORT_TO_FIXEND_COLUMNEND_LINEMESSAGESECONDARY_LOCATIONSSTART_COLUMN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CheckVerifier.IssueAttributevalueOf(String name)Returns the enum constant of this type with the specified name.static CheckVerifier.IssueAttribute[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MESSAGE
public static final CheckVerifier.IssueAttribute MESSAGE
-
START_COLUMN
public static final CheckVerifier.IssueAttribute START_COLUMN
-
END_COLUMN
public static final CheckVerifier.IssueAttribute END_COLUMN
-
END_LINE
public static final CheckVerifier.IssueAttribute END_LINE
-
EFFORT_TO_FIX
public static final CheckVerifier.IssueAttribute EFFORT_TO_FIX
-
SECONDARY_LOCATIONS
public static final CheckVerifier.IssueAttribute SECONDARY_LOCATIONS
-
-
Method Detail
-
values
public static CheckVerifier.IssueAttribute[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CheckVerifier.IssueAttribute c : CheckVerifier.IssueAttribute.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CheckVerifier.IssueAttribute valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-