// (int)
/*
* I've checked empirically it is to return a range of available ids. And also found it
* works for layers but not for registered tables with non spatial layer.. sigh..
*/
final SeTableIdRange ids = layer == null ? null : table.getIds(1);
if (ids == null) {
return null;
}
final SeObjectId startId = ids.getStartId();
final long id = startId.longValue();
final Long newId = Long.valueOf(id);
final AttributeDescriptor rowIdAtt = featureType.getDescriptor(fidReader.getFidColumn());
final Class<?> binding = rowIdAtt.getType().getBinding();