Package org.sonar.api.server.rule
Enum RulesDefinition.OwaspLlmTop10
- java.lang.Object
-
- java.lang.Enum<RulesDefinition.OwaspLlmTop10>
-
- org.sonar.api.server.rule.RulesDefinition.OwaspLlmTop10
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RulesDefinition.OwaspLlmTop10>
- Enclosing interface:
- RulesDefinition
public static enum RulesDefinition.OwaspLlmTop10 extends java.lang.Enum<RulesDefinition.OwaspLlmTop10>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RulesDefinition.OwaspLlmTop10valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RulesDefinition.OwaspLlmTop10[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LLM01
public static final RulesDefinition.OwaspLlmTop10 LLM01
-
LLM02
public static final RulesDefinition.OwaspLlmTop10 LLM02
-
LLM03
public static final RulesDefinition.OwaspLlmTop10 LLM03
-
LLM04
public static final RulesDefinition.OwaspLlmTop10 LLM04
-
LLM05
public static final RulesDefinition.OwaspLlmTop10 LLM05
-
LLM06
public static final RulesDefinition.OwaspLlmTop10 LLM06
-
LLM07
public static final RulesDefinition.OwaspLlmTop10 LLM07
-
LLM08
public static final RulesDefinition.OwaspLlmTop10 LLM08
-
LLM09
public static final RulesDefinition.OwaspLlmTop10 LLM09
-
LLM10
public static final RulesDefinition.OwaspLlmTop10 LLM10
-
-
Method Detail
-
values
public static RulesDefinition.OwaspLlmTop10[] 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 (RulesDefinition.OwaspLlmTop10 c : RulesDefinition.OwaspLlmTop10.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RulesDefinition.OwaspLlmTop10 valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-