query-builder/src/main/java/com/datastax/dse/driver/internal/querybuilder/schema/DefaultCreateDseAggregate.java [264:309]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  @Override
  public String toString() {
    return asCql();
  }

  @Nullable
  public CqlIdentifier getKeyspace() {
    return keyspace;
  }

  @NonNull
  public CqlIdentifier getFunctionName() {
    return functionName;
  }

  public boolean isOrReplace() {
    return orReplace;
  }

  public boolean isIfNotExists() {
    return ifNotExists;
  }

  @NonNull
  public ImmutableList<DataType> getParameters() {
    return parameters;
  }

  @Nullable
  public CqlIdentifier getsFunc() {
    return sFunc;
  }

  @Nullable
  public DataType getsType() {
    return sType;
  }

  @Nullable
  public CqlIdentifier getFinalFunc() {
    return finalFunc;
  }

  @Nullable
  public Term getTerm() {
    return term;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



query-builder/src/main/java/com/datastax/oss/driver/internal/querybuilder/schema/DefaultCreateAggregate.java [180:225]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  @Override
  public String toString() {
    return asCql();
  }

  @Nullable
  public CqlIdentifier getKeyspace() {
    return keyspace;
  }

  @NonNull
  public CqlIdentifier getFunctionName() {
    return functionName;
  }

  public boolean isOrReplace() {
    return orReplace;
  }

  public boolean isIfNotExists() {
    return ifNotExists;
  }

  @NonNull
  public ImmutableList<DataType> getParameters() {
    return parameters;
  }

  @Nullable
  public CqlIdentifier getsFunc() {
    return sFunc;
  }

  @Nullable
  public DataType getsType() {
    return sType;
  }

  @Nullable
  public CqlIdentifier getFinalFunc() {
    return finalFunc;
  }

  @Nullable
  public Term getTerm() {
    return term;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



