Uses of Class
org.apache.solr.util.vector.DenseVectorParser.BuilderPhase
-
Packages that use DenseVectorParser.BuilderPhase Package Description org.apache.solr.schema IndexSchemaandFieldTypeimplementations for powering schema.xmlorg.apache.solr.util.vector Utilities for dense vector search -
-
Uses of DenseVectorParser.BuilderPhase in org.apache.solr.schema
Methods in org.apache.solr.schema with parameters of type DenseVectorParser.BuilderPhase Modifier and Type Method Description DenseVectorParserDenseVectorField. getVectorBuilder(Object inputValue, DenseVectorParser.BuilderPhase phase)Index Time Parsing The inputValue is an ArrayList with a type that depends on the loader used: -XMLLoader,CSVLoaderproduces an ArrayList of String -JsonLoaderproduces an ArrayList of Double -JavabinLoaderproduces an ArrayList of Float -
Uses of DenseVectorParser.BuilderPhase in org.apache.solr.util.vector
Fields in org.apache.solr.util.vector declared as DenseVectorParser.BuilderPhase Modifier and Type Field Description protected DenseVectorParser.BuilderPhaseDenseVectorParser. builderPhaseMethods in org.apache.solr.util.vector that return DenseVectorParser.BuilderPhase Modifier and Type Method Description static DenseVectorParser.BuilderPhaseDenseVectorParser.BuilderPhase. valueOf(String name)Returns the enum constant of this type with the specified name.static DenseVectorParser.BuilderPhase[]DenseVectorParser.BuilderPhase. values()Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.apache.solr.util.vector with parameters of type DenseVectorParser.BuilderPhase Constructor Description ByteDenseVectorParser(int dimension, Object inputValue, DenseVectorParser.BuilderPhase builderPhase)FloatDenseVectorParser(int dimension, Object inputValue, DenseVectorParser.BuilderPhase builderPhase)
-