Package org.geotools.ysld.parse
Class YamlParseHandler
- Object
-
- YamlParseHandler
-
- Direct Known Subclasses:
YsldParseHandler
public abstract class YamlParseHandler extends Object
Abstract base class for Yaml parse handlers. See theRootParser
subclass for the "entrypoint" for parsing aYamlObject
into GeoTools-style objects.
-
-
Constructor Summary
Constructors Constructor Description YamlParseHandler()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract void
handle(YamlObject<?> obj, YamlParseContext context)
Handle parsing the providedYamlObject
in the givenYamlParseContext
.
-
-
-
Method Detail
-
handle
public abstract void handle(YamlObject<?> obj, YamlParseContext context)
Handle parsing the providedYamlObject
in the givenYamlParseContext
.
-
-