Enum Class UseCase

java.lang.Object
java.lang.Enum<UseCase>
ai.promoted.delivery.model.UseCase
All Implemented Interfaces:
Serializable, Comparable<UseCase>, java.lang.constant.Constable

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

    • UNKNOWN

      public static final UseCase UNKNOWN
    • CUSTOM

      public static final UseCase CUSTOM
    • SEARCH_SUGGESTIONS

      public static final UseCase SEARCH_SUGGESTIONS
    • FEED

      public static final UseCase FEED
    • CLOSE_UP

      public static final UseCase CLOSE_UP
    • CATEGORY_CONTENT

      public static final UseCase CATEGORY_CONTENT
    • MY_CONTENT

      public static final UseCase MY_CONTENT
    • MY_SAVED_CONTENT

      public static final UseCase MY_SAVED_CONTENT
    • SELLER_CONTENT

      public static final UseCase SELLER_CONTENT
    • DISCOVER

      public static final UseCase DISCOVER
  • Method Details

    • values

      public static UseCase[] 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 UseCase 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
    • getValue

      public int getValue()