IntType

object IntType : NumberType<Int>

Integer field type represents signed integer value from Int.MIN_VALUE to Int.MAX_VALUE.

Functions

deserialize
Link copied to clipboard
open override fun deserialize(v: Any, valueFactory: () -> Int?): Int
Deserializes field value from Elasticsearch.
deserializeTerm
Link copied to clipboard
open override fun deserializeTerm(v: Any): Int
Deserializes term value from Elasticsearch.
serialize
Link copied to clipboard
open fun serialize(v: Int): Any
Serializes field value to Elasticsearch.
serializeTerm
Link copied to clipboard
open override fun serializeTerm(v: Int): Any
Serializes term value to Elasticsearch.

Properties

name
Link copied to clipboard
open override val name: String
Name of Elasticsearch mapping type.
termType
Link copied to clipboard
open override val termType: KClass<Int>
Term class is used inside FieldSet.