Package worldBuilder

Class POI


  • public class POI
    extends java.lang.Object
    a Point of Interest is a designated location on the map, presumably something that might be of interest to exporters
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String name  
      java.lang.String type  
      double x  
      double y  
    • Constructor Summary

      Constructors 
      Constructor Description
      POI​(java.lang.String type, java.lang.String name, double x, double y)  
    • Method Summary

      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • type

        public java.lang.String type
      • name

        public java.lang.String name
      • x

        public double x
      • y

        public double y
    • Constructor Detail

      • POI

        public POI​(java.lang.String type,
                   java.lang.String name,
                   double x,
                   double y)
        Parameters:
        type - (String) type, recognized by exporters
        name - (String) name of this Point of Interest
        x - map x coordinate
        y - map y coordinate