source: osm/applications/editors/josm/plugins/CommandLine/src/CommandLine/Type.java@ 25052

Last change on this file since 25052 was 25052, checked in by hind, 13 years ago

New types: 'imageryurl', 'imageryoffset' and 'username'. Initial log support (last message field).

File size: 613 bytes
Line 
1/*
2 * Type.java
3 *
4 * Copyright 2010 Hind <foxhind@gmail.com>
5 *
6 * NODE - Node
7 * WAY - Way
8 * RELATION - Relation
9 * ANY - Any osm object (node, way or relation)
10 * POINT - Coordinates like as Lon,Lat
11 * LENGTH - Fractional number
12 * NATURAL - Natural number (1, 10, 9000)
13 * STRING - Text string
14 * TRIGGER - Yes/No
15 * RELAY -
16 *
17 */
18
19package CommandLine;
20
21public enum Type { NODE, WAY, RELATION, ANY, POINT, LENGTH, NATURAL, STRING, TRIGGER, RELAY, USERNAME, IMAGERYURL, IMAGERYOFFSET }
Note: See TracBrowser for help on using the repository browser.