Enum ImageryInfo.ImageryType

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      BING
      TMS entry for Microsoft Bing.
      MVT
      Mapbox Vector Tiles entry
      SCANEX
      TMS entry for Russian company ScanEx.
      TMS
      A TMS (Tile Map Service) entry.
      WMS
      A WMS (Web Map Service) entry.
      WMS_ENDPOINT
      A WMS endpoint entry only stores the WMS server info, without layer, which are chosen later by the user.
      WMTS
      WMTS stores GetCapabilities URL.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String typeString  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private ImageryType​(java.lang.String typeString)  
    • Field Detail

      • typeString

        private final java.lang.String typeString
    • Constructor Detail

      • ImageryType

        private ImageryType​(java.lang.String typeString)
    • Method Detail

      • values

        public static ImageryInfo.ImageryType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ImageryInfo.ImageryType c : ImageryInfo.ImageryType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ImageryInfo.ImageryType valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • fromString

        public static ImageryInfo.ImageryType fromString​(java.lang.String s)
        Returns the imagery type from the given type string.
        Parameters:
        s - The type string
        Returns:
        the imagery type matching the given type string