Uses of Class
org.openstreetmap.josm.tools.GenericParser
-
Packages that use GenericParser Package Description org.openstreetmap.josm.gui.mappaint Drawing system allowing to display and render OSM map data in a user-friendly and customizable way, through map styles.
Two implementations are provided: XML: this was the system used by default JOSM map style for a long time.org.openstreetmap.josm.tools Provides the classes for various utilities and tools called from all other packages. -
-
Uses of GenericParser in org.openstreetmap.josm.gui.mappaint
Fields in org.openstreetmap.josm.gui.mappaint declared as GenericParser Modifier and Type Field Description private static GenericParser<java.lang.Object>
Cascade. GENERIC_PARSER
-
Uses of GenericParser in org.openstreetmap.josm.tools
Subclasses of GenericParser in org.openstreetmap.josm.tools Modifier and Type Class Description class
StringParser
Utility class to parse various types from strings.Methods in org.openstreetmap.josm.tools that return GenericParser Modifier and Type Method Description <T> GenericParser<U>
GenericParser. registerParser(java.lang.Class<T> type, java.util.function.Function<U,T> value)
Constructors in org.openstreetmap.josm.tools with parameters of type GenericParser Constructor Description GenericParser(GenericParser<U> parser)
Creates a newGenericParser
by deeply copyingparser
-