Class ForEachTag.LoopStatus

java.lang.Object
org.apache.commons.jelly.tags.core.ForEachTag.LoopStatus
All Implemented Interfaces:
jakarta.servlet.jsp.jstl.core.LoopTagStatus
Enclosing class:
ForEachTag

public static final class ForEachTag.LoopStatus extends Object implements jakarta.servlet.jsp.jstl.core.LoopTagStatus
Holds the status of the loop.
  • Constructor Details

  • Method Details

    • getBegin

      public Integer getBegin()
      Specified by:
      getBegin in interface jakarta.servlet.jsp.jstl.core.LoopTagStatus
      Returns:
      Returns the begin.
    • getCount

      public int getCount()
      Specified by:
      getCount in interface jakarta.servlet.jsp.jstl.core.LoopTagStatus
      Returns:
      Returns the count.
    • getCurrent

      public Object getCurrent()
      Specified by:
      getCurrent in interface jakarta.servlet.jsp.jstl.core.LoopTagStatus
      Returns:
      Returns the current.
    • getEnd

      public Integer getEnd()
      Specified by:
      getEnd in interface jakarta.servlet.jsp.jstl.core.LoopTagStatus
      Returns:
      Returns the end.
    • isFirst

      public boolean isFirst()
      Specified by:
      isFirst in interface jakarta.servlet.jsp.jstl.core.LoopTagStatus
      Returns:
      Returns the first.
    • getIndex

      public int getIndex()
      Specified by:
      getIndex in interface jakarta.servlet.jsp.jstl.core.LoopTagStatus
      Returns:
      Returns the index.
    • isLast

      public boolean isLast()
      Specified by:
      isLast in interface jakarta.servlet.jsp.jstl.core.LoopTagStatus
      Returns:
      Returns the last.
    • getStep

      public Integer getStep()
      Specified by:
      getStep in interface jakarta.servlet.jsp.jstl.core.LoopTagStatus
      Returns:
      Returns the step.
    • setCount

      public void setCount(int count)
      Parameters:
      count - The count to set.
    • setCurrent

      public void setCurrent(Object current)
      Parameters:
      current - The current to set.
    • setFirst

      public void setFirst(boolean first)
      Parameters:
      first - The first to set.
    • setLast

      public void setLast(boolean last)
      Parameters:
      last - The last to set.
    • setIndex

      public void setIndex(int index)
      Parameters:
      index - The index to set.