Skip to content

Commit

Permalink
Replace esriFieldTypeNumber by esriFieldTypeSingle
Browse files Browse the repository at this point in the history
"Number" is not a valid esriFieldType and "Single" is
  • Loading branch information
danielvillalbamota authored Jan 31, 2024
1 parent 8ab48cb commit 9671872
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static GisAttributeType fromString(String strType) throws ArcgisException
case "Integer":
case "SmallInteger":
return GisAttributeType.INTEGER;
case "Number":
case "Single":
case "Double":
return GisAttributeType.NUMBER;
case "Boolean":
Expand Down

0 comments on commit 9671872

Please sign in to comment.