Skip to content

Commit

Permalink
[feat] #7 geojson data modeling added for Feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramachandran Nellaiyappan committed Mar 21, 2024
1 parent 87e3da4 commit 21b04e3
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@

import com.fasterxml.jackson.annotation.JsonCreator;
import com.github.nramc.dev.journey.api.geojson.types.GeoJsonType;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.ToString;
import org.apache.commons.collections4.CollectionUtils;

import java.util.List;
import java.util.Objects;

@Getter
@ToString
@EqualsAndHashCode(callSuper = false)
public final class GeometryCollection extends Geometry {
private final List<Geometry> geometries;

Expand Down

0 comments on commit 21b04e3

Please sign in to comment.