Enum ServiceFeatureTable.QueryFeatureFields

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      IDS_ONLY
      Includes only the object id and global id in the ArcGISFeatures of the query result.
      LOAD_ALL
      Includes all available attributes in the ArcGISFeatures of the query result.
      MINIMUM
      Includes the minimum set of attributes in the ArcGISFeatures of the query result.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static ServiceFeatureTable.QueryFeatureFields valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static ServiceFeatureTable.QueryFeatureFields[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • IDS_ONLY

        public static final ServiceFeatureTable.QueryFeatureFields IDS_ONLY
        Includes only the object id and global id in the ArcGISFeatures of the query result. The features are returned with no other attributes. The geometry returned by this request does not include m values, even if they are defined in the feature service.
      • MINIMUM

        public static final ServiceFeatureTable.QueryFeatureFields MINIMUM
        Includes the minimum set of attributes in the ArcGISFeatures of the query result. The geometry returned by this request does not include m values, even if they are defined in the feature service.
      • LOAD_ALL

        public static final ServiceFeatureTable.QueryFeatureFields LOAD_ALL
        Includes all available attributes in the ArcGISFeatures of the query result. This constant loads the features returned by the query, which makes all attributes available. The geometry returned by this request includes m values if they are defined in the feature service.
    • Method Detail

      • values

        public static ServiceFeatureTable.QueryFeatureFields[] 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 (ServiceFeatureTable.QueryFeatureFields c : ServiceFeatureTable.QueryFeatureFields.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ServiceFeatureTable.QueryFeatureFields 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