Package org.apache.sis.referencing.cs
Class DefaultCompoundCS
Object
FormattableObject
AbstractIdentifiedObject
AbstractCS
DefaultCompoundCS
- All Implemented Interfaces:
- Serializable,- Formattable,- Deprecable,- LenientComparable,- CoordinateSystem,- IdentifiedObject
A coordinate system made of two or more independent coordinate systems.
 
 
 
| Used with CRS | Permitted axis names | 
|---|---|
| Compound | (not applicable) | 
Immutability and thread safety
This class is immutable and thus thread-safe if the property values (not necessarily the map itself) and theCoordinateSystemAxis instances given to the constructor are also immutable. Unless otherwise
 noted in the javadoc, this condition holds if all components were created using only SIS factories and static
 constants.- Since:
- 0.4
- See Also:
Defined in the sis-referencing module
- 
Field SummaryFields inherited from class AbstractIdentifiedObjectDEPRECATED_KEY, LOCALE_KEYFields inherited from interface IdentifiedObjectALIAS_KEY, IDENTIFIERS_KEY, NAME_KEY, REMARKS_KEY
- 
Constructor SummaryConstructorsConstructorDescriptionDefaultCompoundCS(Map<String, ?> properties, CoordinateSystem... components) Constructs a coordinate system from a set of properties and a sequence of coordinate systems.DefaultCompoundCS(CoordinateSystem... components) Constructs a compound coordinate system from a sequence of coordinate systems.
- 
Method SummaryModifier and TypeMethodDescriptionbooleanequals(Object object, ComparisonMode mode) Compares this coordinate system with the specified object for equality.Returns all coordinate systems in this compound CS.Methods inherited from class AbstractCScastOrCopy, computeHashCode, forConvention, formatTo, getAxis, getDimension, getInterfaceMethods inherited from class AbstractIdentifiedObjectcastOrCopy, equals, formatTo, getAlias, getDescription, getIdentifiers, getName, getRemarks, hashCode, isDeprecated, isHeuristicMatchForNameMethods inherited from class FormattableObjectprint, toString, toString, toWKTMethods inherited from class Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface IdentifiedObjectgetAlias, getIdentifiers, getName, getRemarks, toWKT
- 
Constructor Details- 
DefaultCompoundCSConstructs a coordinate system from a set of properties and a sequence of coordinate systems. The properties map is given unchanged to the super-class constructor. The following table is a reminder of main (not all) properties:Recognized properties (non exhaustive list) Property name Value type Returned by "name" ReferenceIdentifierorStringAbstractIdentifiedObject.getName()"alias" GenericNameorCharSequence(optionally as array)AbstractIdentifiedObject.getAlias()"identifiers" ReferenceIdentifier(optionally as array)AbstractIdentifiedObject.getIdentifiers()"remarks" InternationalStringorStringAbstractIdentifiedObject.getRemarks()- Parameters:
- properties- the properties to be given to the identified object.
- components- the set of coordinate system.
 
- 
DefaultCompoundCSConstructs a compound coordinate system from a sequence of coordinate systems. A default name for this CS will be inferred from the names of all specified CS.- Parameters:
- components- the set of coordinate system.
 
 
- 
- 
Method Details- 
getComponentsReturns all coordinate systems in this compound CS.- Returns:
- all coordinate systems in this compound CS.
 
- 
equalsCompares this coordinate system with the specified object for equality.- Specified by:
- equalsin interface- LenientComparable
- Overrides:
- equalsin class- AbstractCS
- Parameters:
- object- the object to compare to- this.
- mode-- STRICTfor performing a strict comparison, or- IGNORE_METADATAfor comparing only properties relevant to coordinate transformations.
- Returns:
- trueif both objects are equal.
- See Also:
 
 
-