Class FlowableExpressionDateFunctionUtils
- java.lang.Object
-
- com.flowable.platform.expressions.FlowableExpressionDateFunctionUtils
-
@Deprecated public class FlowableExpressionDateFunctionUtils extends Object
Deprecated.Use methods fromFlowableExpressionTimeUtils
insteadExpression 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 boolean
compareDates(String comparator, Object firstDate, Object secondDate)
Deprecated.use one of the comparison methods inFlowableExpressionTimeUtils
boolean
compareDateTimes(String comparator, Object firstDateTime, Object secondDateTime)
Deprecated.use one of the comparison methods inFlowableExpressionTimeUtils
protected LocalDate
convertInstantToLocalDate(Instant instant)
Deprecated.protected LocalDateTime
convertInstantToLocalDateTime(Instant instant)
Deprecated.protected LocalDate
convertToLocalDate(Object date)
Deprecated.protected LocalDateTime
convertToLocalDateTime(Object dateTime)
Deprecated.LocalDate
modifyDate(Object date, Number days, Number months, Number years)
Deprecated.use one of the plus options inFlowableExpressionTimeUtils
.LocalDateTime
modifyDateTime(Object date, Number days, Number months, Number years, Number hours, Number minutes, Number seconds)
Deprecated.use one of the plus options inFlowableExpressionTimeUtils
.LocalDateTime
now()
Deprecated.LocalDate
parseDate(String isoDateString)
Deprecated.useFlowableExpressionTimeUtils.asLocalDate(Object)
insteadLocalDate
parseDate(String dateString, String pattern)
Deprecated.LocalDateTime
parseDateTime(String isoDateTimeString)
Deprecated.LocalDateTime
parseDateTime(String dateTimeString, String pattern)
Deprecated.LocalDate
today()
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.
-
-