java.lang.Object
java.lang.Enum<EntityTypes>
com.azure.resourcemanager.customerinsights.models.EntityTypes
All Implemented Interfaces:
Serializable, Comparable<EntityTypes>, java.lang.constant.Constable

public enum EntityTypes extends Enum<EntityTypes>
Type of entity.
  • Enum Constant Details

    • NONE

      public static final EntityTypes NONE
      Enum value None.
    • PROFILE

      public static final EntityTypes PROFILE
      Enum value Profile.
    • INTERACTION

      public static final EntityTypes INTERACTION
      Enum value Interaction.
    • RELATIONSHIP

      public static final EntityTypes RELATIONSHIP
      Enum value Relationship.
  • Method Details

    • values

      public static EntityTypes[] 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 EntityTypes 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
    • fromString

      public static EntityTypes fromString(String value)
      Parses a serialized value to a EntityTypes instance.
      Parameters:
      value - the serialized value to parse.
      Returns:
      the parsed EntityTypes object, or null if unable to parse.
    • toString

      public String toString()
      Overrides:
      toString in class Enum<EntityTypes>