Uses of Class
com.azure.search.documents.indexes.models.SearchFieldDataType
Packages that use SearchFieldDataType
Package
Description
Package containing the data models for SearchServiceClient.
-
Uses of SearchFieldDataType in com.azure.search.documents.indexes.models
Subclasses with type arguments of type SearchFieldDataType in com.azure.search.documents.indexes.modelsModifier and TypeClassDescriptionfinal classDefines the data type of a field in a search index.Fields in com.azure.search.documents.indexes.models declared as SearchFieldDataTypeModifier and TypeFieldDescriptionstatic final SearchFieldDataTypeSearchFieldDataType.BOOLEANIndicates that a field contains a Boolean value (true or false).static final SearchFieldDataTypeSearchFieldDataType.BYTEIndicates that a field contains a 8-bit unsigned integer.static final SearchFieldDataTypeSearchFieldDataType.COMPLEXIndicates that a field contains one or more complex objects that in turn have sub-fields of other types.static final SearchFieldDataTypeSearchFieldDataType.DATE_TIME_OFFSETIndicates that a field contains a date/time value, including timezone information.static final SearchFieldDataTypeSearchFieldDataType.DOUBLEIndicates that a field contains an IEEE double-precision floating point number.static final SearchFieldDataTypeSearchFieldDataType.GEOGRAPHY_POINTIndicates that a field contains a geo-location in terms of longitude and latitude.static final SearchFieldDataTypeSearchFieldDataType.HALFIndicates that a field contains a half-precision floating point number.static final SearchFieldDataTypeSearchFieldDataType.INT16Indicates that a field contains a 16-bit signed integer.static final SearchFieldDataTypeSearchFieldDataType.INT32Indicates that a field contains a 32-bit signed integer.static final SearchFieldDataTypeSearchFieldDataType.INT64Indicates that a field contains a 64-bit signed integer.static final SearchFieldDataTypeSearchFieldDataType.SBYTEIndicates that a field contains a 8-bit signed integer.static final SearchFieldDataTypeSearchFieldDataType.SINGLEIndicates that a field contains a single-precision floating point number.static final SearchFieldDataTypeSearchFieldDataType.STRINGIndicates that a field contains a string.Methods in com.azure.search.documents.indexes.models that return SearchFieldDataTypeModifier and TypeMethodDescriptionstatic SearchFieldDataTypeSearchFieldDataType.collection(SearchFieldDataType dataType) Returns a collection of a specific SearchFieldDataType.static SearchFieldDataTypeSearchFieldDataType.fromString(String name) Creates or finds a SearchFieldDataType from its string representation.SearchField.getType()Get the type property: The data type of the field.Methods in com.azure.search.documents.indexes.models that return types with arguments of type SearchFieldDataTypeModifier and TypeMethodDescriptionstatic Collection<SearchFieldDataType> SearchFieldDataType.values()Gets known SearchFieldDataType values.Methods in com.azure.search.documents.indexes.models with parameters of type SearchFieldDataTypeModifier and TypeMethodDescriptionstatic SearchFieldDataTypeSearchFieldDataType.collection(SearchFieldDataType dataType) Returns a collection of a specific SearchFieldDataType.Constructors in com.azure.search.documents.indexes.models with parameters of type SearchFieldDataTypeModifierConstructorDescriptionSearchField(String name, SearchFieldDataType type) Creates an instance of SearchField class.