Class AppendDateToList

java.lang.Object
cdm.base.datetime.functions.AppendDateToList
All Implemented Interfaces:
com.rosetta.model.lib.functions.RosettaFunction
Direct Known Subclasses:
AppendDateToList.AppendDateToListDefault

public abstract class AppendDateToList extends Object implements com.rosetta.model.lib.functions.RosettaFunction
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static class 
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    protected abstract List<com.rosetta.model.lib.records.Date>
    doEvaluate(List<com.rosetta.model.lib.records.Date> origDates, com.rosetta.model.lib.records.Date newDate)
     
    List<com.rosetta.model.lib.records.Date>
    evaluate(List<com.rosetta.model.lib.records.Date> origDates, com.rosetta.model.lib.records.Date newDate)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface com.rosetta.model.lib.functions.RosettaFunction

    toBuilder, toBuilder, toBuilder
  • Constructor Details

    • AppendDateToList

      public AppendDateToList()
  • Method Details

    • evaluate

      public List<com.rosetta.model.lib.records.Date> evaluate(List<com.rosetta.model.lib.records.Date> origDates, com.rosetta.model.lib.records.Date newDate)
      Parameters:
      origDates - List of dates.
      newDate - Date to add to the list.
      Returns:
      newList The newly increased list.
    • doEvaluate

      protected abstract List<com.rosetta.model.lib.records.Date> doEvaluate(List<com.rosetta.model.lib.records.Date> origDates, com.rosetta.model.lib.records.Date newDate)