public enum SparqlAggregate extends Enum<SparqlAggregate> implements SparqlOperator
Expressions is completed.| Enum Constant and Description | 
|---|
| AVG | 
| COUNT | 
| GROUP_CONCAT | 
| MAX | 
| MIN | 
| SAMPLE | 
| SUM | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getQueryString() | 
| static SparqlAggregate | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static SparqlAggregate[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SparqlAggregate AVG
public static final SparqlAggregate COUNT
public static final SparqlAggregate GROUP_CONCAT
public static final SparqlAggregate MAX
public static final SparqlAggregate MIN
public static final SparqlAggregate SAMPLE
public static final SparqlAggregate SUM
public static SparqlAggregate[] values()
for (SparqlAggregate c : SparqlAggregate.values()) System.out.println(c);
public static SparqlAggregate valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getQueryString()
getQueryString in interface QueryElementCopyright © 2015-2020 Eclipse Foundation. All Rights Reserved.