com.esri.core.portal
Enum WebMapLayer.Mode

java.lang.Object
  extended by java.lang.Enum<WebMapLayer.Mode>
      extended by com.esri.core.portal.WebMapLayer.Mode
All Implemented Interfaces:
Serializable, Comparable<WebMapLayer.Mode>
Enclosing class:
WebMapLayer

public static enum WebMapLayer.Mode
extends Enum<WebMapLayer.Mode>

The operational mode of an ArcGIS Feature layer


Enum Constant Summary
ONDEMAND
          OnDemand mode
SELECTION
          SelectionOnly mode
SNAPSHOT
          Snapshot mode
 
Method Summary
static WebMapLayer.Mode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static WebMapLayer.Mode[] 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

SNAPSHOT

public static final WebMapLayer.Mode SNAPSHOT
Snapshot mode


ONDEMAND

public static final WebMapLayer.Mode ONDEMAND
OnDemand mode


SELECTION

public static final WebMapLayer.Mode SELECTION
SelectionOnly mode

Method Detail

values

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

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

valueOf

public static WebMapLayer.Mode 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.