Skip to content
Snippets Groups Projects
Commit 7f38ddc0 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

add copy of method in builder

parent f4075004
No related branches found
No related tags found
2 merge requests!128Production Release | nshmp-ws-static,!127Resolves - Handle Multiple NetCDF Files for AASHTO Service
...@@ -118,6 +118,16 @@ public class NetcdfData { ...@@ -118,6 +118,16 @@ public class NetcdfData {
Builder() {} Builder() {}
public static Builder copyOf(NetcdfData netcdfData) {
return builder()
.imts(netcdfData.imts)
.latitudes(netcdfData.latitudes)
.longitudes(netcdfData.longitudes)
.scienceBaseMetadata(netcdfData.scienceBaseMetadata)
.siteClasses(netcdfData.siteClasses)
.vs30Map(netcdfData.vs30Map);
}
public Builder imts(List<Imt> imts) { public Builder imts(List<Imt> imts) {
this.imts = imts; this.imts = imts;
return this; return this;
...@@ -162,5 +172,4 @@ public class NetcdfData { ...@@ -162,5 +172,4 @@ public class NetcdfData {
checkState(!vs30Map.isEmpty(), "Must add vs30s"); checkState(!vs30Map.isEmpty(), "Must add vs30s");
} }
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment