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, PromqlFunctionRegistry.EsqlFunctionBuilder esqlBuilder, String description, List<PromqlFunctionRegistry.ParamInfo> params, List<String> examples, PromqlFunctionRegistry.CounterSupport counterSupport)
extends Record
Function definition record for registration and metadata.
-
Constructor Summary
ConstructorsConstructorDescriptionFunctionDefinition(String name, FunctionType functionType, PromqlFunctionRegistry.Arity arity, PromqlFunctionRegistry.EsqlFunctionBuilder esqlBuilder, String description, List<PromqlFunctionRegistry.ParamInfo> params, List<String> examples, PromqlFunctionRegistry.CounterSupport counterSupport) Creates an instance of aFunctionDefinitionrecord class. -
Method Summary
Modifier and TypeMethodDescriptionarity()Returns the value of thearityrecord component.Returns the value of thecounterSupportrecord component.Returns the value of thedescriptionrecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of theesqlBuilderrecord component.examples()Returns the value of theexamplesrecord component.Returns the value of thefunctionTyperecord component.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.params()Returns the value of theparamsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
FunctionDefinition
public FunctionDefinition(String name, FunctionType functionType, PromqlFunctionRegistry.Arity arity, PromqlFunctionRegistry.EsqlFunctionBuilder esqlBuilder, String description, List<PromqlFunctionRegistry.ParamInfo> params, List<String> examples, PromqlFunctionRegistry.CounterSupport counterSupport) 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 componentdescription- the value for thedescriptionrecord componentparams- the value for theparamsrecord componentexamples- the value for theexamplesrecord componentcounterSupport- the value for thecounterSupportrecord 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
-
description
Returns the value of thedescriptionrecord component.- Returns:
- the value of the
descriptionrecord component
-
params
Returns the value of theparamsrecord component.- Returns:
- the value of the
paramsrecord component
-
examples
Returns the value of theexamplesrecord component.- Returns:
- the value of the
examplesrecord component
-
counterSupport
Returns the value of thecounterSupportrecord component.- Returns:
- the value of the
counterSupportrecord component
-