Class DateTimeTrigger


  • public class DateTimeTrigger
    extends TimeTrigger
    Time trigger that will execute task at specified date and time in specified format (e.g. '2011-12-03T10:15:30').
    See Also:
    String format, ISO-8601
    • Nested Class Summary

      • Nested classes/interfaces inherited from class com.netgrif.application.engine.workflow.domain.triggers.Trigger

        Trigger.Type
    • Field Summary

      • Fields inherited from class com.netgrif.application.engine.workflow.domain.triggers.Trigger

        _id
      • Fields inherited from class com.netgrif.application.engine.petrinet.domain.Imported

        importId
    • Constructor Summary

      Constructors 
      Constructor Description
      DateTimeTrigger​(java.lang.String timeString)
      Creates new DateTimeTrigger from specified string in ISO-8601 date time format (e.g.
    • Constructor Detail

      • DateTimeTrigger

        public DateTimeTrigger​(java.lang.String timeString)
                        throws java.time.format.DateTimeParseException
        Creates new DateTimeTrigger from specified string in ISO-8601 date time format (e.g. '2011-12-03T10:15:30').
        Parameters:
        timeString - date and time string in specified format
        Throws:
        java.time.format.DateTimeParseException - if the string cannot be parsed into DateTime
        See Also:
        String format, ISO-8601