Enum GeotriggerMonitorStatus
- java.lang.Object
-
- java.lang.Enum<GeotriggerMonitorStatus>
-
- com.esri.arcgisruntime.geotriggers.GeotriggerMonitorStatus
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<GeotriggerMonitorStatus>
public enum GeotriggerMonitorStatus extends java.lang.Enum<GeotriggerMonitorStatus>
The current status of aGeotriggerMonitor.- Since:
- 100.12.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FAILED_TO_STARTTheGeotriggerMonitorfailed to start.STARTEDTheGeotriggerMonitorhas been started.STARTINGTheGeotriggerMonitoris starting.STOPPEDTheGeotriggerMonitorhas been stopped or has not been started yet.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GeotriggerMonitorStatusvalueOf(java.lang.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
TheGeotriggerMonitorhas been stopped or has not been started yet.- Since:
- 100.12.0
-
STARTING
public static final GeotriggerMonitorStatus STARTING
TheGeotriggerMonitoris starting.- Since:
- 100.12.0
-
STARTED
public static final GeotriggerMonitorStatus STARTED
TheGeotriggerMonitorhas been started.- Since:
- 100.12.0
-
FAILED_TO_START
public static final GeotriggerMonitorStatus FAILED_TO_START
TheGeotriggerMonitorfailed 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(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-