modules/core/src/main/java/org/apache/fluo/recipes/core/combine/CqConfigurator.java [77:89]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    return this;
  }

  @Override
  public FluentArg2 keyType(String keyType) {
    this.keyType = Objects.requireNonNull(keyType);
    return this;
  }

  @Override
  public FluentArg2 keyType(Class<?> keyType) {
    this.keyType = keyType.getName();
    return this;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



modules/core/src/main/java/org/apache/fluo/recipes/core/export/FluentConfigurator.java [142:154]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    return this;
  }

  @Override
  public FluentArg2 keyType(String keyType) {
    this.keyType = Objects.requireNonNull(keyType);
    return this;
  }

  @Override
  public FluentArg2 keyType(Class<?> keyType) {
    this.keyType = keyType.getName();
    return this;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



