Package uk.ac.rdg.resc.edal.domain
Interface DiscreteDomain<P,DO>
-
- Type Parameters:
P
- The type of object used to identify positions within this domainDO
- The type of the domain object
- All Superinterfaces:
Domain<P>
- All Known Subinterfaces:
DiscreteHorizontalDomain<DO>
,DiscretePointDomain<P>
,GridDomain
,HorizontalGrid
,RectilinearGrid
,ReferenceableAxis<P>
,RegularAxis
,RegularGrid
,StaggeredHorizontalGrid
,TimeAxis
,VerticalAxis
- All Known Implementing Classes:
AbstractCurvilinearGrid
,AbstractHorizontalGrid
,AbstractIrregularAxis
,AbstractReferenceableAxis
,AbstractTransformedGrid
,CdmTransformedGrid
,DefinedBoundsAxis
,DefinedStaggeredGrid
,DerivedStaggeredGrid
,HorizontalMesh
,LookUpTableGrid
,MapDomain
,PointCollectionDomain
,PointDomain
,RectilinearGridImpl
,ReferenceableAxisImpl
,RegularAxisImpl
,RegularGridImpl
,SimpleGridDomain
,TimeAxisImpl
,TrajectoryDomain
,VerticalAxisImpl
public interface DiscreteDomain<P,DO> extends Domain<P>
A
Domain
that consists of a finite number of discrete objects.DiscreteFeature
s use this type of domain.- Author:
- Jon Blower, Guy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Array<DO>
getDomainObjects()
Returns anArray
of domain objects that comprise this domain.
-