Class FlowableExpressionDateFunctionUtils
- java.lang.Object
-
- com.flowable.platform.expressions.FlowableExpressionDateFunctionUtils
-
@Deprecated public class FlowableExpressionDateFunctionUtils extends Object
Deprecated.Use methods fromFlowableExpressionTimeUtilsinsteadExpression Bean Name: flwDateFunctionUtils
-
-
Constructor Summary
Constructors Constructor Description FlowableExpressionDateFunctionUtils()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleancompareDates(String comparator, Object firstDate, Object secondDate)Deprecated.use one of the comparison methods inFlowableExpressionTimeUtilsbooleancompareDateTimes(String comparator, Object firstDateTime, Object secondDateTime)Deprecated.use one of the comparison methods inFlowableExpressionTimeUtilsprotected LocalDateconvertInstantToLocalDate(Instant instant)Deprecated.protected LocalDateTimeconvertInstantToLocalDateTime(Instant instant)Deprecated.protected LocalDateconvertToLocalDate(Object date)Deprecated.protected LocalDateTimeconvertToLocalDateTime(Object dateTime)Deprecated.LocalDatemodifyDate(Object date, Number days, Number months, Number years)Deprecated.use one of the plus options inFlowableExpressionTimeUtils.LocalDateTimemodifyDateTime(Object date, Number days, Number months, Number years, Number hours, Number minutes, Number seconds)Deprecated.use one of the plus options inFlowableExpressionTimeUtils.LocalDateTimenow()Deprecated.LocalDateparseDate(String isoDateString)Deprecated.useFlowableExpressionTimeUtils.asLocalDate(Object)insteadLocalDateparseDate(String dateString, String pattern)Deprecated.LocalDateTimeparseDateTime(String isoDateTimeString)Deprecated.LocalDateTimeparseDateTime(String dateTimeString, String pattern)Deprecated.LocalDatetoday()Deprecated.useFlowableExpressionTimeUtils.currentLocalDate()instead
-
-
-
Method Detail
-
today
@Deprecated public LocalDate today()
Deprecated.useFlowableExpressionTimeUtils.currentLocalDate()instead
-
now
@Deprecated public LocalDateTime now()
Deprecated.
-
parseDate
@Deprecated public LocalDate parseDate(String isoDateString)
Deprecated.useFlowableExpressionTimeUtils.asLocalDate(Object)instead
-
parseDate
@Deprecated public LocalDate parseDate(String dateString, String pattern)
Deprecated.
-
parseDateTime
@Deprecated public LocalDateTime parseDateTime(String isoDateTimeString)
Deprecated.
-
parseDateTime
@Deprecated public LocalDateTime parseDateTime(String dateTimeString, String pattern)
Deprecated.
-
modifyDate
@Deprecated public LocalDate modifyDate(Object date, Number days, Number months, Number years)
Deprecated.use one of the plus options inFlowableExpressionTimeUtils. If a combination of days, months and years is needed useFlowableExpressionTimeUtils.plusDuration(Object, String)with a duration asP1Y5M10D
-
modifyDateTime
@Deprecated public LocalDateTime modifyDateTime(Object date, Number days, Number months, Number years, Number hours, Number minutes, Number seconds)
Deprecated.use one of the plus options inFlowableExpressionTimeUtils. If a combination of values is needed useFlowableExpressionTimeUtils.plusDuration(Object, String)with a duration asP1Y5M10DT10H15M10S- See Also:
FlowableExpressionTimeUtils.plusDays(Object, long),FlowableExpressionTimeUtils.plusMonths(Object, long),FlowableExpressionTimeUtils.plusYears(Object, long),FlowableExpressionTimeUtils.plusHours(Object, long),FlowableExpressionTimeUtils.plusMinutes(Object, long),FlowableExpressionTimeUtils.plusSeconds(Object, long),FlowableExpressionTimeUtils.plusDuration(Object, String)
-
compareDates
@Deprecated public boolean compareDates(String comparator, Object firstDate, Object secondDate)
Deprecated.use one of the comparison methods inFlowableExpressionTimeUtils
-
compareDateTimes
@Deprecated public boolean compareDateTimes(String comparator, Object firstDateTime, Object secondDateTime)
Deprecated.use one of the comparison methods inFlowableExpressionTimeUtils
-
convertToLocalDateTime
protected LocalDateTime convertToLocalDateTime(Object dateTime)
Deprecated.
-
convertInstantToLocalDate
protected LocalDate convertInstantToLocalDate(Instant instant)
Deprecated.
-
convertInstantToLocalDateTime
protected LocalDateTime convertInstantToLocalDateTime(Instant instant)
Deprecated.
-
-