Enum GeotriggerMonitorStatus
- java.lang.Object
-
- java.lang.Enum<GeotriggerMonitorStatus>
-
- com.esri.arcgisruntime.geotriggers.GeotriggerMonitorStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<GeotriggerMonitorStatus>
public enum GeotriggerMonitorStatus extends Enum<GeotriggerMonitorStatus>
The current status of aGeotriggerMonitor
.- Since:
- 100.12.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FAILED_TO_START
TheGeotriggerMonitor
failed to start.STARTED
TheGeotriggerMonitor
has been started.STARTING
TheGeotriggerMonitor
is starting.STOPPED
TheGeotriggerMonitor
has been stopped or has not been started yet.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GeotriggerMonitorStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static GeotriggerMonitorStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STOPPED
public static final GeotriggerMonitorStatus STOPPED
TheGeotriggerMonitor
has been stopped or has not been started yet.- Since:
- 100.12.0
-
STARTING
public static final GeotriggerMonitorStatus STARTING
TheGeotriggerMonitor
is starting.- Since:
- 100.12.0
-
STARTED
public static final GeotriggerMonitorStatus STARTED
TheGeotriggerMonitor
has been started.- Since:
- 100.12.0
-
FAILED_TO_START
public static final GeotriggerMonitorStatus FAILED_TO_START
TheGeotriggerMonitor
failed to start.- Since:
- 100.12.0
-
-
Method Detail
-
values
public static GeotriggerMonitorStatus[] 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 (GeotriggerMonitorStatus c : GeotriggerMonitorStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GeotriggerMonitorStatus 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 nameNullPointerException
- if the argument is null
-
-