Skip to content

Commit

Permalink
missed check-in with the upgrade to template csvs
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Cuddihy committed Jun 23, 2022
1 parent 3dd10eb commit 703f8bf
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,21 @@ public HashSet<XSDSupportedType> getValueTypes() {
return this.valueTypes;
}

/**
* Get value type simple string such as "integer" but could be list using delim
* @param delim
* @return
*/
public String getValueTypesString(String delim) {
String ret = "";
for (XSDSupportedType t : this.valueTypes) {
if (ret.length() > 0)
ret += delim;
ret += t.getSimpleName();
}
return ret;
}

public String getRangeURI() {
return this.rangeURI;
}
Expand Down

0 comments on commit 703f8bf

Please sign in to comment.