Enum ApplicationType

java.lang.Object
java.lang.Enum<ApplicationType>
ai.djl.spring.configuration.ApplicationType
All Implemented Interfaces:
Serializable, Comparable<ApplicationType>

public enum ApplicationType extends Enum<ApplicationType>
  • Enum Constant Details

    • QUESTION_ANSWER

      public static final ApplicationType QUESTION_ANSWER
    • TEXT_CLASSIFICATION

      public static final ApplicationType TEXT_CLASSIFICATION
    • IMAGE_CLASSIFICATION

      public static final ApplicationType IMAGE_CLASSIFICATION
    • OBJECT_DETECTION

      public static final ApplicationType OBJECT_DETECTION
    • ACTION_RECOGNITION

      public static final ApplicationType ACTION_RECOGNITION
    • INSTANCE_SEGMENTATION

      public static final ApplicationType INSTANCE_SEGMENTATION
    • POSE_ESTIMATION

      public static final ApplicationType POSE_ESTIMATION
    • SEMANTIC_SEGMENTATION

      public static final ApplicationType SEMANTIC_SEGMENTATION
  • Method Details

    • values

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

      public static ApplicationType 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 name
      NullPointerException - if the argument is null