Click or drag to resize

NumericMaxAggregate Class

Class representing NMAX Aggregate Functions.
Inheritance Hierarchy
System.Object
  VDS.RDF.Query.Aggregates.BaseAggregate
    VDS.RDF.Query.Aggregates.Leviathan.NumericMaxAggregate

Namespace:  VDS.RDF.Query.Aggregates.Leviathan
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public class NumericMaxAggregate : BaseAggregate

The NumericMaxAggregate type exposes the following members.

Constructors
  NameDescription
Public methodNumericMaxAggregate(ISparqlExpression)
Creates a new NMAX Aggregate.
Public methodNumericMaxAggregate(VariableTerm)
Creates a new NMAX Aggregate.
Public methodNumericMaxAggregate(ISparqlExpression, Boolean)
Creates a new NMAX Aggregate.
Public methodNumericMaxAggregate(VariableTerm, Boolean)
Creates a new NMAX Aggregate.
Top
Properties
  NameDescription
Public propertyArguments
Gets the Arguments of the Expression.
(Inherited from BaseAggregate.)
Public propertyExpression
Expression that the Aggregate executes over.
(Inherited from BaseAggregate.)
Public propertyFunctor
Gets the Functor of the Aggregate.
(Overrides BaseAggregate.Functor.)
Public propertyType
Gets the Type of the Expression.
(Inherited from BaseAggregate.)
Top
Methods
  NameDescription
Public methodApply(SparqlEvaluationContext)
Applies the Aggregate to the Result Binder.
(Inherited from BaseAggregate.)
Public methodApply(SparqlEvaluationContext, IEnumerable<Int32>)
Applies the Numeric Max Aggregate function to the results.
(Overrides BaseAggregate.Apply(SparqlEvaluationContext, IEnumerable<Int32>).)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Gets the String representation of the Aggregate.
(Overrides BaseAggregate.ToString().)
Top
Fields
  NameDescription
Protected field_distinct
Whether a DISTINCT modifer is applied.
(Inherited from BaseAggregate.)
Protected field_expr
Expression that the aggregate operates over.
(Inherited from BaseAggregate.)
Top
Remarks
Only operates over numeric data which is typed to one of the supported SPARQL Numeric types (integers, decimals and doubles).
See Also