com.esri.android.map.ags
Enum ArcGISFeatureLayer.SELECTION_METHOD

java.lang.Object
  extended by java.lang.Enum<ArcGISFeatureLayer.SELECTION_METHOD>
      extended by com.esri.android.map.ags.ArcGISFeatureLayer.SELECTION_METHOD
All Implemented Interfaces:
Serializable, Comparable<ArcGISFeatureLayer.SELECTION_METHOD>
Enclosing class:
ArcGISFeatureLayer

public static enum ArcGISFeatureLayer.SELECTION_METHOD
extends Enum<ArcGISFeatureLayer.SELECTION_METHOD>

The modes used for the select features method.


Enum Constant Summary
ADD
          Adds features to the current selection set.
NEW
          Creates a new selection.
SUBTRACT
          Removes features from the current selection.
 
Method Summary
static ArcGISFeatureLayer.SELECTION_METHOD valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ArcGISFeatureLayer.SELECTION_METHOD[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ADD

public static final ArcGISFeatureLayer.SELECTION_METHOD ADD
Adds features to the current selection set.


NEW

public static final ArcGISFeatureLayer.SELECTION_METHOD NEW
Creates a new selection.


SUBTRACT

public static final ArcGISFeatureLayer.SELECTION_METHOD SUBTRACT
Removes features from the current selection.

Method Detail

values

public static ArcGISFeatureLayer.SELECTION_METHOD[] 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 (ArcGISFeatureLayer.SELECTION_METHOD c : ArcGISFeatureLayer.SELECTION_METHOD.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ArcGISFeatureLayer.SELECTION_METHOD valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2012. All Rights Reserved.