public V getGenerator()

in src/main/java/com/aliyun/odps/kafka/connect/account/AccountFactory.java [6:15]


  public <V extends T> V getGenerator(Class<V> clazz) {
    if (clazz == null) {
      return null;
    }
    try {
      return clazz.newInstance();
    } catch (Exception e) {
      throw new RuntimeException(e);
    }
  }