All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cdc.gv.atts.GvCompassPoint Maven / Gradle / Ivy

There is a newer version: 0.100.2
Show newest version
package cdc.gv.atts;

import cdc.gv.support.GvEncodable;

/**
 * Enumeration of possible compass points.
 *
 * @author Damien Carbonne
 *
 */
public enum GvCompassPoint implements GvEncodable {
   N,
   E,
   S,
   W,
   NE,
   NW,
   SE,
   SW,
   C;

   @Override
   public String encode() {
      return name().toLowerCase();
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy