Add of factory method

This commit is contained in:
2023-06-21 16:18:13 -05:00
parent 65e8f7a71f
commit a367ec717c

View File

@ -56,4 +56,14 @@ public enum AggregateOperator
{ {
return sqlPrefix; return sqlPrefix;
} }
/*******************************************************************************
**
*******************************************************************************/
public Aggregate of(String fieldName)
{
return (new Aggregate(fieldName, this));
}
} }