Show / Hide Table of Contents

Class NumericMaxAggregate

Class representing NMAX Aggregate Functions.

Inheritance
System.Object
BaseAggregate
NumericMaxAggregate
Implements
ISparqlAggregate
Inherited Members
BaseAggregate._expr
BaseAggregate._distinct
BaseAggregate.Expression
BaseAggregate.Distinct
BaseAggregate.Type
BaseAggregate.Arguments
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Namespace: VDS.RDF.Query.Aggregates.Leviathan
Assembly: dotNetRdf.dll
Syntax
public class NumericMaxAggregate : BaseAggregate, ISparqlAggregate
Remarks

Only operates over numeric data which is typed to one of the supported SPARQL Numeric types (integers, decimals and doubles).

Constructors

| Improve this Doc View Source

NumericMaxAggregate(ISparqlExpression, bool)

Creates a new NMAX Aggregate.

Declaration
public NumericMaxAggregate(ISparqlExpression expr, bool distinct)
Parameters
Type Name Description
ISparqlExpression expr

Expression.

System.Boolean distinct

Whether a DISTINCT modifier applies.

Remarks

Only operates over numeric data which is typed to one of the supported SPARQL Numeric types (integers, decimals and doubles).

| Improve this Doc View Source

NumericMaxAggregate(ISparqlExpression)

Creates a new NMAX Aggregate.

Declaration
public NumericMaxAggregate(ISparqlExpression expr)
Parameters
Type Name Description
ISparqlExpression expr

Expression.

Remarks

Only operates over numeric data which is typed to one of the supported SPARQL Numeric types (integers, decimals and doubles).

| Improve this Doc View Source

NumericMaxAggregate(VariableTerm, bool)

Creates a new NMAX Aggregate.

Declaration
public NumericMaxAggregate(VariableTerm expr, bool distinct)
Parameters
Type Name Description
VariableTerm expr

Variable Expression.

System.Boolean distinct

Whether a DISTINCT modifier applies.

Remarks

Only operates over numeric data which is typed to one of the supported SPARQL Numeric types (integers, decimals and doubles).

| Improve this Doc View Source

NumericMaxAggregate(VariableTerm)

Creates a new NMAX Aggregate.

Declaration
public NumericMaxAggregate(VariableTerm expr)
Parameters
Type Name Description
VariableTerm expr

Variable Expression.

Remarks

Only operates over numeric data which is typed to one of the supported SPARQL Numeric types (integers, decimals and doubles).

Properties

| Improve this Doc View Source

Functor

Gets the Functor of the Aggregate.

Declaration
public override string Functor { get; }
Property Value
Type Description
string
Overrides
BaseAggregate.Functor
Remarks

Only operates over numeric data which is typed to one of the supported SPARQL Numeric types (integers, decimals and doubles).

| Improve this Doc View Source

Variable

Declaration
public string Variable { get; }
Property Value
Type Description
string
Remarks

Only operates over numeric data which is typed to one of the supported SPARQL Numeric types (integers, decimals and doubles).

Methods

| Improve this Doc View Source

Accept<TResult, TContext, TBinding>(ISparqlAggregateProcessor<TResult, TContext, TBinding>, TContext, IEnumerable<TBinding>)

Declaration
public override TResult Accept<TResult, TContext, TBinding>(ISparqlAggregateProcessor<TResult, TContext, TBinding> processor, TContext context, IEnumerable<TBinding> bindings)
Parameters
Type Name Description
ISparqlAggregateProcessor<TResult, TContext, TBinding> processor
TContext context
System.Collections.Generic.IEnumerable<T><TBinding> bindings
Returns
Type Description
TResult
Type Parameters
Name Description
TResult
TContext
TBinding
Overrides
VDS.RDF.Query.Aggregates.BaseAggregate.Accept<TResult, TContext, TBinding>(VDS.RDF.Query.ISparqlAggregateProcessor<TResult, TContext, TBinding>, TContext, System.Collections.Generic.IEnumerable<TBinding>)
Remarks

Only operates over numeric data which is typed to one of the supported SPARQL Numeric types (integers, decimals and doubles).

| Improve this Doc View Source

ToString()

Gets the String representation of the Aggregate.

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
BaseAggregate.ToString()
Remarks

Only operates over numeric data which is typed to one of the supported SPARQL Numeric types (integers, decimals and doubles).

Implements

ISparqlAggregate

Extension Methods

Extensions.ToSafeString(object)
Extensions.AsEnumerable<T>(T)
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • NumericMaxAggregate(ISparqlExpression, bool)
    • NumericMaxAggregate(ISparqlExpression)
    • NumericMaxAggregate(VariableTerm, bool)
    • NumericMaxAggregate(VariableTerm)
  • Properties
    • Functor
    • Variable
  • Methods
    • Accept<TResult, TContext, TBinding>(ISparqlAggregateProcessor<TResult, TContext, TBinding>, TContext, IEnumerable<TBinding>)
    • ToString()
  • Implements
  • Extension Methods
Back to top Generated by DocFX