Enum Class AiOptions.TaxonomyMode

java.lang.Object
java.lang.Enum<AiOptions.TaxonomyMode>
org.egothor.methodatlas.ai.AiOptions.TaxonomyMode
All Implemented Interfaces:
Serializable, Comparable<AiOptions.TaxonomyMode>, Constable
Enclosing class:
AiOptions

public static enum AiOptions.TaxonomyMode extends Enum<AiOptions.TaxonomyMode>
Built-in taxonomy modes used for security classification.

These modes determine which internal taxonomy definition is supplied to the AI provider when an external taxonomy file is not configured.

  • DEFAULT – general-purpose taxonomy suitable for human readability
  • OPTIMIZED – compact taxonomy optimized for AI classification accuracy
  • Enum Constant Details

    • DEFAULT

      public static final AiOptions.TaxonomyMode DEFAULT
      Standard taxonomy definition emphasizing clarity and documentation.
    • OPTIMIZED

      public static final AiOptions.TaxonomyMode OPTIMIZED
      Reduced taxonomy optimized for improved AI classification reliability.
  • Method Details

    • values

      public static AiOptions.TaxonomyMode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AiOptions.TaxonomyMode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null