Enum IndexConfig.IndexConfigType

  • All Implemented Interfaces:
    BmcEnum, Serializable, Comparable<IndexConfig.IndexConfigType>
    Enclosing class:
    IndexConfig

    public static enum IndexConfig.IndexConfigType
    extends Enum<IndexConfig.IndexConfigType>
    implements BmcEnum
    The type of index.

    The allowed values are: - DEFAULT_INDEX_CONFIG: DefaultIndexConfig allows the service to create and manage vector store on behalf of the customer. - OCI_OPEN_SEARCH_INDEX_CONFIG: OciOpenSearchIndexConfig allows customer to configure their OpenSearch cluster. - OCI_DATABASE_CONFIG: OciDatabaseConfig allows customer to configure their Database.

    • Method Detail

      • values

        public static IndexConfig.IndexConfigType[] values()
        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 (IndexConfig.IndexConfigType c : IndexConfig.IndexConfigType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static IndexConfig.IndexConfigType 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