public static boolean isTableContainingGeometryColumn()

in src/main/java/com/epam/digital/data/platform/geoserver/utils/TableUtils.java [26:30]


  public static boolean isTableContainingGeometryColumn(Table table) {
    return table.getColumns().stream()
        .map(column -> column.getColumnDataType().getName())
        .anyMatch(GEOMETRY_TYPE::equalsIgnoreCase);
  }