Class VectorStoreRecordDataField
- java.lang.Object
-
- com.microsoft.semantickernel.data.vectorstorage.definition.VectorStoreRecordField
-
- com.microsoft.semantickernel.data.vectorstorage.definition.VectorStoreRecordDataField
-
public class VectorStoreRecordDataField extends VectorStoreRecordField
Represents a data field in a record.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classVectorStoreRecordDataField.BuilderBuilder for the VectorStoreRecordDataField class.
-
Constructor Summary
Constructors Constructor Description VectorStoreRecordDataField(String name, String storageName, Class<?> fieldType, boolean isFilterable, boolean isFullTextSearchable)Creates a new instance of the VectorStoreRecordDataField class.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VectorStoreRecordDataField.Builderbuilder()Create a builder for the VectorStoreRecordDataField class.booleanisFilterable()Gets a value indicating whether the field is filterable.booleanisFullTextSearchable()Gets a value indicating whether the field is full text searchable.-
Methods inherited from class com.microsoft.semantickernel.data.vectorstorage.definition.VectorStoreRecordField
getEffectiveStorageName, getFieldType, getName, getStorageName
-
-
-
-
Constructor Detail
-
VectorStoreRecordDataField
public VectorStoreRecordDataField(@Nonnull String name, @Nullable String storageName, @Nonnull Class<?> fieldType, boolean isFilterable, boolean isFullTextSearchable)
Creates a new instance of the VectorStoreRecordDataField class.- Parameters:
name- the name of the fieldstorageName- the storage name of the fieldfieldType- the field typeisFilterable- a value indicating whether the field is filterableisFullTextSearchable- a value indicating whether the field is full text searchable
-
-
Method Detail
-
builder
public static VectorStoreRecordDataField.Builder builder()
Create a builder for the VectorStoreRecordDataField class.- Returns:
- a new instance of the builder
-
isFilterable
public boolean isFilterable()
Gets a value indicating whether the field is filterable.- Returns:
- a value indicating whether the field is filterable
-
isFullTextSearchable
public boolean isFullTextSearchable()
Gets a value indicating whether the field is full text searchable.- Returns:
- a value indicating whether the field is full text searchable
-
-