SimpleFieldType

abstract class SimpleFieldType<V> : FieldType<V, V>

Base field type for types with the same field and term value types.

Inheritors

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
abstract val name: String

Name of Elasticsearch mapping type.

Link copied to clipboard
abstract val termType: KClass<*>

Term class is used inside FieldSet.getFieldByName method to check term type before casting.

Functions

Link copied to clipboard
abstract fun deserialize(v: Any, valueFactory: () -> V? = null): V & Any

Deserializes field value from Elasticsearch.

Link copied to clipboard
open override fun deserializeTerm(v: Any): V & Any

Deserializes term value from Elasticsearch.

Link copied to clipboard
open fun params(): Params
Link copied to clipboard
open fun serialize(v: V & Any): Any

Serializes field value to Elasticsearch.

Link copied to clipboard
open override fun serializeTerm(v: V & Any): Any

Serializes term value to Elasticsearch.