/** @return Full map string representation. */
 @SuppressWarnings({"ConstantConditions"})
 private String fullMapString() {
   return node2part == null
       ? "null"
       : FULL_MAP_DEBUG ? node2part.toFullString() : node2part.toString();
 }