Enum EntityType

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      AGENT
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      ARTICLE
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      AUDIO
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      BOOK
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      COLLECTION
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      CORPORATE_BODY
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      DIGITAL_OBJECT
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      ENTITY
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      EVENT
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      EXPRESSION
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      FAMILY
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      GEOLOCATION
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      HEADWORD_ENTRY
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      IMAGE
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      ITEM
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      MANIFESTATION
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      OBJECT_3D
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      PERSON
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      PLACE
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      PROJECT
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      TOPIC
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      VIDEO
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      WEBSITE
      Deprecated, for removal: This API element is subject to removal in a future version.
       
      WORK
      Deprecated, for removal: This API element is subject to removal in a future version.
       
    • Enum Constant Detail

      • AGENT

        public static final EntityType AGENT
        Deprecated, for removal: This API element is subject to removal in a future version.
      • ARTICLE

        public static final EntityType ARTICLE
        Deprecated, for removal: This API element is subject to removal in a future version.
      • AUDIO

        public static final EntityType AUDIO
        Deprecated, for removal: This API element is subject to removal in a future version.
      • BOOK

        public static final EntityType BOOK
        Deprecated, for removal: This API element is subject to removal in a future version.
      • COLLECTION

        public static final EntityType COLLECTION
        Deprecated, for removal: This API element is subject to removal in a future version.
      • CORPORATE_BODY

        public static final EntityType CORPORATE_BODY
        Deprecated, for removal: This API element is subject to removal in a future version.
      • DIGITAL_OBJECT

        public static final EntityType DIGITAL_OBJECT
        Deprecated, for removal: This API element is subject to removal in a future version.
      • ENTITY

        public static final EntityType ENTITY
        Deprecated, for removal: This API element is subject to removal in a future version.
      • EVENT

        public static final EntityType EVENT
        Deprecated, for removal: This API element is subject to removal in a future version.
      • EXPRESSION

        public static final EntityType EXPRESSION
        Deprecated, for removal: This API element is subject to removal in a future version.
      • FAMILY

        public static final EntityType FAMILY
        Deprecated, for removal: This API element is subject to removal in a future version.
      • GEOLOCATION

        public static final EntityType GEOLOCATION
        Deprecated, for removal: This API element is subject to removal in a future version.
      • HEADWORD_ENTRY

        public static final EntityType HEADWORD_ENTRY
        Deprecated, for removal: This API element is subject to removal in a future version.
      • IMAGE

        public static final EntityType IMAGE
        Deprecated, for removal: This API element is subject to removal in a future version.
      • ITEM

        public static final EntityType ITEM
        Deprecated, for removal: This API element is subject to removal in a future version.
      • MANIFESTATION

        public static final EntityType MANIFESTATION
        Deprecated, for removal: This API element is subject to removal in a future version.
      • OBJECT_3D

        public static final EntityType OBJECT_3D
        Deprecated, for removal: This API element is subject to removal in a future version.
      • PERSON

        public static final EntityType PERSON
        Deprecated, for removal: This API element is subject to removal in a future version.
      • PLACE

        public static final EntityType PLACE
        Deprecated, for removal: This API element is subject to removal in a future version.
      • PROJECT

        public static final EntityType PROJECT
        Deprecated, for removal: This API element is subject to removal in a future version.
      • TOPIC

        public static final EntityType TOPIC
        Deprecated, for removal: This API element is subject to removal in a future version.
      • VIDEO

        public static final EntityType VIDEO
        Deprecated, for removal: This API element is subject to removal in a future version.
      • WEBSITE

        public static final EntityType WEBSITE
        Deprecated, for removal: This API element is subject to removal in a future version.
      • WORK

        public static final EntityType WORK
        Deprecated, for removal: This API element is subject to removal in a future version.
    • Method Detail

      • values

        public static EntityType[] values()
        Deprecated, for removal: This API element is subject to removal in a future version.
        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 (EntityType c : EntityType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static EntityType valueOf​(String name)
        Deprecated, for removal: This API element is subject to removal in a future version.
        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
      • toString

        public String toString()
        Deprecated, for removal: This API element is subject to removal in a future version.
        Overrides:
        toString in class Enum<EntityType>