Record Class PromqlFunctionRegistry.FunctionDefinition
java.lang.Object
java.lang.Record
org.elasticsearch.xpack.esql.expression.promql.function.PromqlFunctionRegistry.FunctionDefinition
- Enclosing class:
PromqlFunctionRegistry
public static record PromqlFunctionRegistry.FunctionDefinition(String name, FunctionType functionType, PromqlFunctionRegistry.Arity arity, BiFunction<Source,List<Expression>,Function> esqlBuilder)
extends Record
Function definition record for registration and metadata.
-
Constructor Summary
ConstructorsConstructorDescriptionFunctionDefinition(String name, FunctionType functionType, PromqlFunctionRegistry.Arity arity, BiFunction<Source, List<Expression>, Function> esqlBuilder) Creates an instance of aFunctionDefinitionrecord class. -
Method Summary
Modifier and TypeMethodDescriptionarity()Returns the value of thearityrecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of theesqlBuilderrecord component.Returns the value of thefunctionTyperecord component.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
FunctionDefinition
public FunctionDefinition(String name, FunctionType functionType, PromqlFunctionRegistry.Arity arity, BiFunction<Source, List<Expression>, Function> esqlBuilder) Creates an instance of aFunctionDefinitionrecord class.- Parameters:
name- the value for thenamerecord componentfunctionType- the value for thefunctionTyperecord componentarity- the value for thearityrecord componentesqlBuilder- the value for theesqlBuilderrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
functionType
Returns the value of thefunctionTyperecord component.- Returns:
- the value of the
functionTyperecord component
-
arity
Returns the value of thearityrecord component.- Returns:
- the value of the
arityrecord component
-
esqlBuilder
Returns the value of theesqlBuilderrecord component.- Returns:
- the value of the
esqlBuilderrecord component
-