|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Item.ItemType>
com.esri.core.internal.catalog.Item.ItemType
public static enum Item.ItemType
Represents the type of an Item stored in arcgis.com. arcgis.com allows users to store a myriad of Items types classified by the medium in which the Items are stored on the server (File, Text or URL) and the ArcGIS applications that an Item type is applicable for. Currently this API only supports WebMap and FeatureCollection (both stored as Text) to support Android and Java SE applications.
Enum Constant Summary | |
---|---|
FEATURE_COLLECTION
A Feature collections stored and retrieved as JSON text or zip file |
|
WEB_MAP
A WebMap stored and retrieved as JSON text |
Method Summary | |
---|---|
static Item.ItemType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Item.ItemType[] |
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 |
---|
public static final Item.ItemType WEB_MAP
public static final Item.ItemType FEATURE_COLLECTION
Method Detail |
---|
public static Item.ItemType[] values()
for (Item.ItemType c : Item.ItemType.values()) System.out.println(c);
public static Item.ItemType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |