Module com.esri.arcgisruntime
Package com.esri.arcgisruntime.portal
Enum Class PortalPrivilege.Subtype
- All Implemented Interfaces:
Serializable
,Comparable<PortalPrivilege.Subtype>
,Constable
- Enclosing class:
PortalPrivilege
An enumeration of the fine-grained operation subtypes a portal privilege can permit.
- Since:
- 100.12.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe ability to perform closest facility tasks.The ability to perform location-allocation tasks.The privilege does not relate to a fine-grained operation.The ability to perform optimized routing tasks.The ability to perform origin-destination cost matrix tasks.The ability to perform simple routing tasks.The ability to perform service area tasks.The ability to perform geocode operations and store the results, in a database for instance.The ability to perform geocode operations in which the results are not stored.An unknown portal privilege subtype.The ability to perform vehicle routing tasks. -
Method Summary
Modifier and TypeMethodDescriptiontoString()
Returns a string representing the PortalPrivilege.Subtype.static PortalPrivilege.Subtype
Returns the enum constant of this class with the specified name.static PortalPrivilege.Subtype[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN
An unknown portal privilege subtype.- Since:
- 100.12.0
-
NONE
The privilege does not relate to a fine-grained operation.- Since:
- 100.12.0
-
STORED
The ability to perform geocode operations and store the results, in a database for instance.- Since:
- 100.12.0
-
TEMPORARY
The ability to perform geocode operations in which the results are not stored.- Since:
- 100.12.0
-
CLOSEST_FACILITY
The ability to perform closest facility tasks.- Since:
- 100.12.0
-
LOCATION_ALLOCATION
The ability to perform location-allocation tasks.- Since:
- 100.12.0
-
OPTIMIZED_ROUTING
The ability to perform optimized routing tasks.- Since:
- 100.12.0
-
ORIGIN_DESTINATION_COST_MATRIX
The ability to perform origin-destination cost matrix tasks.- Since:
- 100.12.0
-
ROUTING
The ability to perform simple routing tasks.- Since:
- 100.12.0
-
SERVICE_AREA
The ability to perform service area tasks.- Since:
- 100.12.0
-
VEHICLE_ROUTING
The ability to perform vehicle routing tasks.- Since:
- 100.12.0
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
Returns a string representing the PortalPrivilege.Subtype.- Overrides:
toString
in classEnum<PortalPrivilege.Subtype>
- Returns:
- a string representing the PortalPrivilege.Subtype
- Since:
- 100.12.0
-