com.supermap.services.protocols.wcs

Class WCSParameter

  • java.lang.Object
    • com.supermap.services.protocols.wcs.WCSParameter


  • public class WCSParameter
    extends java.lang.Object
    

    WCS parameter class, used to pass GetCoverage parameters.

    • Field Summary

      Fields 
      Modifier and Type Field and Description
      BoundingBox boundingBox
      Request the bounding box of the coverage.
      java.lang.String format
      Requests the output format of the coverage.
      int height
      Specifies the height of the output image.
      java.lang.String identifier
      Request the identity of the coverage.
      boolean store
      Specify whether the output range should be saved, false is not saved, the default value is false.
      int width
      Specifies the width of the output image.
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      boolean equals(java.lang.Object obj)
      Determines whether the specified WCSParameter object is equal to the current WCSParameter object.
      int hashCode()
      Return hash code.
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • identifier

        public java.lang.String identifier
        
        Request the identity of the coverage.
      • boundingBox

        public BoundingBox boundingBox
        
        Request the bounding box of the coverage.
      • format

        public java.lang.String format
        
        Requests the output format of the coverage.
      • store

        public boolean store
        
        Specify whether the output range should be saved, false is not saved, the default value is false.
      • width

        public int width
        
        Specifies the width of the output image.
      • height

        public int height
        
        Specifies the height of the output image.
    • Constructor Detail

      • WCSParameter

        public WCSParameter()
        

        The Constructor.

      • WCSParameter

        public WCSParameter(WCSParameter wcsparameter)
        

        The Constructor.

        Parameters:
        wcsparameter - WCS parameter.
    • Method Detail

      • equals

        public boolean equals(java.lang.Object obj)
        

        Determines whether the specified WCSParameter object is equal to the current WCSParameter object.

        Overrides:
        equals in class java.lang.Object
        Parameters:
        obj - The object that is compared with the current WCSParameter object.
        Returns:
        Returns true if both objects are equal; false otherwise.
      • hashCode

        public int hashCode()
        

        Return hash code.

        Overrides:
        hashCode in class java.lang.Object
        Returns:
        hash code.