Class FeatureCollectionTable

    • Constructor Detail

      • FeatureCollectionTable

        public FeatureCollectionTable​(java.lang.Iterable<Field> fields,
                                      GeometryType geometryType,
                                      SpatialReference spatialReference)
        Creates a FeatureCollectionTable from a table schema, that is, a set of fields, geometry type and spatial reference.
        Parameters:
        fields - the fields of all features in the table
        geometryType - the geometry type of all features in the table, pass GeometryType.UNKNOWN to create a non-spatial FeatureCollectionTable
        spatialReference - the spatial reference of all features in the table, can be null for a non-spatial FeatureCollectionTable
        Throws:
        java.lang.IllegalArgumentException - if
        • fields is null or empty
        • geometryType is null
        • spatialReference is null and geometryType not GeometryType.UNKNOWN
        Since:
        100.0.0
      • FeatureCollectionTable

        public FeatureCollectionTable​(java.lang.Iterable<Field> fields,
                                      GeometryType geometryType,
                                      SpatialReference spatialReference,
                                      boolean hasZ,
                                      boolean hasM)
        Creates a FeatureCollectionTable from a table schema, that is, a set of fields, geometry type and spatial reference.
        Parameters:
        fields - the fields of all features in the table
        geometryType - the geometry type of all features in the table, pass GeometryType.UNKNOWN to create a non-spatial FeatureCollectionTable
        spatialReference - the spatial reference of all features in the table, can be null for a non-spatial FeatureCollectionTable
        hasZ - specifies whether the table supports geometries with z values, true if it does, false otherwise
        hasM - specifies whether the table supports geometries with m values, true if it does, false otherwise
        Throws:
        java.lang.IllegalArgumentException - if
        • fields is null or empty
        • geometryType is null
        • spatialReference is null and geometryType not GeometryType.UNKNOWN
        Since:
        100.0.0
      • FeatureCollectionTable

        public FeatureCollectionTable​(java.lang.Iterable<GeoElement> geoElements,
                                      java.lang.Iterable<Field> fields)
        Creates a FeatureCollectionTable populated with the given geo-elements. The geometry type and spatial reference will be inferred from the geo-elements passed in.

        The given fields will be used to create the table schema. If any geo-elements have more fields than the table schema the additional fields will be ignored. If any geo-elements have fewer fields, the missing fields will be initialized with the field default values.

        Parameters:
        geoElements - the geo-elements to populate the FeatureCollectionTable with
        fields - the fields of all features in the table
        Throws:
        java.lang.IllegalArgumentException - if
        • geoElements is null or empty
        • fields is null or empty
        Since:
        100.0.0
        See Also:
        GeoElement
      • FeatureCollectionTable

        public FeatureCollectionTable​(FeatureSet featureSet)
        Creates a FeatureCollectionTable populated with the features from the given FeatureSet. The geometry type and spatial reference will be inferred from the FeatureSet passed in.
        Parameters:
        featureSet - a set of features to populate the FeatureCollectionTable with
        Throws:
        java.lang.IllegalArgumentException - if featureSet is null
        Since:
        100.00
        See Also:
        FeatureSet
    • Method Detail

      • getLayerInfo

        public ArcGISFeatureLayerInfo getLayerInfo()
        Gets the layer info of this FeatureCollectionTable.
        Returns:
        an ArcGISFeatureLayerInfo
        Since:
        100.0.0
      • getRenderer

        public Renderer getRenderer()
        Gets the renderer of this FeatureCollectionTable.
        Returns:
        the renderer used to render features of this table
        Since:
        100.0.0
      • setRenderer

        public void setRenderer​(Renderer renderer)
        Sets the Renderer of this FeatureCollectionTable.
        Parameters:
        renderer - the Renderer to use with this FeatureCollectionTable
        Throws:
        java.lang.IllegalArgumentException - if renderer is null
        Since:
        100.0.0
        See Also:
        Renderer
      • getSymbolOverride

        public Symbol getSymbolOverride​(Feature feature)
        Gets the symbol override for the given feature in the FeatureCollectionTable.
        Parameters:
        feature - the feature in the table for which to retrieve its symbol override
        Returns:
        a Symbol used to render the given feature
        Since:
        100.0.0
      • setSymbolOverride

        public void setSymbolOverride​(Feature feature,
                                      Symbol symbol)
        Sets the symbol override for the given feature in the FeatureCollectionTable. The specified symbol is used to render the given feature instead of the renderer of this table.
        Parameters:
        feature - the feature in the table for which to set the specified symbol override
        symbol - the symbol override
        Since:
        100.0.0
      • getTitle

        public java.lang.String getTitle()
        Gets the title of this FeatureCollectionTable.
        Returns:
        the title of this FeatureCollectionTable
        Since:
        100.0.0
      • setTitle

        public void setTitle​(java.lang.String title)
        Sets the title of this FeatureCollectionTable.
        Parameters:
        title - the title of this FeatureCollectionTable
        Since:
        100.0.0
      • iterator

        public java.util.Iterator<Feature> iterator()
        Returns an iterator over the set of features in this FeatureCollectionTable. Iterators previously returned from this method will become invalid and their methods will throw an IllegalStateException.
        Specified by:
        iterator in interface java.lang.Iterable<Feature>
        Returns:
        an iterator over the set of features in this FeatureCollectionTable
        Since:
        100.0.0