|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
ObjectFormattableObject
public class FormattableObject
Base class for objects formattable as Well Known Text (WKT).
Almost every Geotk implementations of referencing objects extend this class,
except AffineTransform2D.
Strict and lenient WKT formatting
Strict WKT formatting is performed by various toWKT(...) methods. Those methods may
fail to format a particular object, in which case a UnformattableObjectException is
thrown. A formatting may fail because an object is too complex for the WKT format capability
(for example an EngineeringCRS
with different unit for different axis), or because only some specific implementations can be
formatted as WKT.
The default toString() implementation is like toWKT() except that no
exception is thrown if the resulting WKT is not compliant with the specification. The
toString() method does not provide control over indentation and other features.
But if such control is desired, it can be obtained by using directly the Formatter
class.
Syntax coloring
A convenience print() method is provided, which is roughly equivalent to
System.out.println(this) except that syntax coloring is automatically applied
if the terminal seems to support the X3.64 standard.
| referencing/geotk-referencing (download) | View source code for this class |
| Constructor Summary | |
|---|---|
protected |
FormattableObject()
Default constructor. |
| Method Summary | |
|---|---|
String |
formatWKT(Formatter formatter)
Formats the inner part of a Well Known Text (WKT) element. |
void |
print()
Prints a string representation of this object to the standard output stream. |
String |
toString()
Returns a string representation for this object. |
String |
toWKT()
Returns a Well Known Text (WKT) using the default indentation. |
String |
toWKT(Convention convention,
int indentation)
Returns a Well Known Text (WKT) for this object using the specified convention and indentation. |
| Methods inherited from class Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
protected FormattableObject()
| Method Detail |
|---|
@Debug public void print()
X3.64 standard,
then a syntax coloring will be applied.
This is a convenience method for debugging purpose and for console applications.
Note: We don't use the standard error stream (the stream used by the Java logging framework) because it is different than the stream used by the console.
public String toString()
toWKT(), except that no exception is thrown if the string contains
non-standard keywords. For example the WKT specification does not defines any keyword for
coordinate system objects. If this object is an instance of
DefaultCartesianCS, then the WKT will be formatted as
CartesianCS[AXIS["..."], AXIS["..."], etc.].
toString in class Object
public String toWKT()
throws UnformattableObjectException
UnformattableObjectException - If this object can't be formatted as WKT.IdentifiedObject.toWKT()
public String toWKT(Convention convention,
int indentation)
throws UnformattableObjectException
OGC,
but other common conventions are GEOTIFF and
EPSG. The INTERNAL
convention is a special value for debugging map projections.
convention - The convention for choosing WKT entities names.
The default value is #OGC.indentation - The amount of spaces to use in indentation for WKT formatting,
or -1 for formatting the
whole WKT on a single line.
UnformattableObjectException - If this object can't be formatted as WKT.public String formatWKT(Formatter formatter)
Formatter.append(Formattable).
Element name and authority code shall not be formatted here. For example for a GEOGCS
element, the formatter will invoke this method for completing the WKT at the insertion point
show below:
GEOGCS["WGS 84", AUTHORITY["EPSG","4326"]]
↑
(insertion point)
The default implementation declares that this object produces an invalid WKT.
Subclasses must override this method for proper WKT formatting and should
not invoke super.formatWKT(formatter) if they can
use a valid WKT syntax.
formatWKT in interface Formattableformatter - The formatter to use.
"GEOGCS").toWKT(),
toString()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||