Package org.geotools.referencing.util
Interface Formattable
-
- All Known Implementing Classes:
AffineTransform2D
public interface FormattableInterface for object that can be formatted as Well Known Text (WKT), but can't extendsFormattable. This interface is especially used forAffineTransform2Dimplementation. This interface is not public because theformatWKT(Formatter)method usually has a protected access.- Since:
- 2.0
- Author:
- Martin Desruisseaux (IRD)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringformatWKT(Formatter formatter)Format the inner part of a Well Known Text (WKT) element.
-
-
-
Method Detail
-
formatWKT
String formatWKT(Formatter formatter)
Format the inner part of a Well Known Text (WKT) element.- Parameters:
formatter- The formatter to use.- Returns:
- The WKT element name (e.g. "GEOGCS").
- See Also:
Formattable.formatWKT(Formatter)
-
-