com.quartzdesk.service.types.v1_0.scheduler.quartz.monitor
Enum MonitorJobState

java.lang.Object
  extended by java.lang.Enum<MonitorJobState>
      extended by com.quartzdesk.service.types.v1_0.scheduler.quartz.monitor.MonitorJobState
All Implemented Interfaces:
Serializable, Comparable<MonitorJobState>

public enum MonitorJobState
extends Enum<MonitorJobState>

Java class for MonitorJobState.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="MonitorJobState">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="ERROR_CONNECTION"/>
     <enumeration value="ERROR_LICENSE"/>
     <enumeration value="JOB_NOT_FOUND"/>
     <enumeration value="JOB_NOT_EXECUTED"/>
     <enumeration value="JOB_SUCCESS"/>
     <enumeration value="JOB_ERROR"/>
     <enumeration value="JOB_VETO"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
ERROR_CONNECTION
           
ERROR_LICENSE
           
JOB_ERROR
           
JOB_NOT_EXECUTED
           
JOB_NOT_FOUND
           
JOB_SUCCESS
           
JOB_VETO
           
 
Method Summary
static MonitorJobState fromValue(String v)
           
 String value()
           
static MonitorJobState valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MonitorJobState[] 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

ERROR_CONNECTION

public static final MonitorJobState ERROR_CONNECTION

ERROR_LICENSE

public static final MonitorJobState ERROR_LICENSE

JOB_NOT_FOUND

public static final MonitorJobState JOB_NOT_FOUND

JOB_NOT_EXECUTED

public static final MonitorJobState JOB_NOT_EXECUTED

JOB_SUCCESS

public static final MonitorJobState JOB_SUCCESS

JOB_ERROR

public static final MonitorJobState JOB_ERROR

JOB_VETO

public static final MonitorJobState JOB_VETO
Method Detail

values

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

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

valueOf

public static MonitorJobState 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

value

public String value()

fromValue

public static MonitorJobState fromValue(String v)


Copyright © 2013–2017 QuartzDesk.com. All rights reserved.