com.quartzdesk.service.types.v5_0.scheduler.quartz
Enum QuartzMisfiredTriggerRefireStatus

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

public enum QuartzMisfiredTriggerRefireStatus
extends Enum<QuartzMisfiredTriggerRefireStatus>

Java class for QuartzMisfiredTriggerRefireStatus.

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

 <simpleType name="QuartzMisfiredTriggerRefireStatus">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="NOT_FIRED"/>
     <enumeration value="FIRED_EXECUTING"/>
     <enumeration value="FIRED_SUCCESS"/>
     <enumeration value="FIRED_VETO"/>
     <enumeration value="FIRED_ERROR"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
FIRED_ERROR
          The misfired job was fired and completed with an error.
FIRED_EXECUTING
          The misfired job was fired and is currently executing.
FIRED_SUCCESS
          The misfired job was fired and completed successfully.
FIRED_VETO
          The misfired job was fired and its exection was vetoed.
NOT_FIRED
          The misfired job was not fired (yet).
 
Method Summary
static QuartzMisfiredTriggerRefireStatus fromValue(String v)
           
 String value()
           
static QuartzMisfiredTriggerRefireStatus valueOf(String name)
          Returns the enum constant of this type with the specified name.
static QuartzMisfiredTriggerRefireStatus[] 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

NOT_FIRED

public static final QuartzMisfiredTriggerRefireStatus NOT_FIRED
The misfired job was not fired (yet).


FIRED_EXECUTING

public static final QuartzMisfiredTriggerRefireStatus FIRED_EXECUTING
The misfired job was fired and is currently executing.


FIRED_SUCCESS

public static final QuartzMisfiredTriggerRefireStatus FIRED_SUCCESS
The misfired job was fired and completed successfully.


FIRED_VETO

public static final QuartzMisfiredTriggerRefireStatus FIRED_VETO
The misfired job was fired and its exection was vetoed.


FIRED_ERROR

public static final QuartzMisfiredTriggerRefireStatus FIRED_ERROR
The misfired job was fired and completed with an error.

Method Detail

values

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

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

valueOf

public static QuartzMisfiredTriggerRefireStatus 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 QuartzMisfiredTriggerRefireStatus fromValue(String v)


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