private static boolean tableExists()

in java/dataproc-wordcount/src/main/java/com/example/bigtable/sample/CreateTable.java [87:95]


  private static boolean tableExists(TableName tableName, Admin admin)  {
    try {
      return admin.tableExists(tableName);
    } catch (Exception e) {
      LOG.error("Could not figure out if table " + tableName + " exists.", e);
      return false;
    } finally {
    }
  }