Skip to content

Commit

Permalink
change version type to String on GeoParquet file format
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas Ceni <[email protected]>
  • Loading branch information
lceni committed Feb 10, 2025
1 parent 5a931ec commit 96b8692
Showing 1 changed file with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,18 @@
package com.here.xyz.jobs.datasets.files;

public class GeoParquet extends FileFormat {
private Version version = Version.V1;
private String version;

public Version getVersion() {
public String getVersion() {
return version;
}

public void setVersion(Version version) {
public void setVersion(String version) {
this.version = version;
}

public GeoParquet withVersion(Version version) {
public GeoParquet withVersion(String version) {
setVersion(version);
return this;
}

public enum Version {
V1, V2
}
}

0 comments on commit 96b8692

Please sign in to comment.