Package org.thymeleaf.context
Class IdentifierSequences
- Object
-
- org.thymeleaf.context.IdentifierSequences
-
public final class IdentifierSequences extends Object
Objects of this class are kept at
ITemplateContextin order to provide templates with a way to create uniqueidattribute values during template processing.- Since:
- 3.0.0
- Author:
- Daniel Fernández
-
-
Constructor Summary
Constructors Constructor Description IdentifierSequences()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntegergetAndIncrementIDSeq(String id)Returns a new index (ID count) for a specific value of theidattribute, and increments the count.IntegergetNextIDSeq(String id)Returns the index (ID count) for a specific value of theidattribute without incrementing the count.IntegergetPreviousIDSeq(String id)Returns the last index (ID count) returned for a specific value of theidattribute (without incrementing the count).
-
-
-
Method Detail
-
getAndIncrementIDSeq
public Integer getAndIncrementIDSeq(String id)
Returns a new index (ID count) for a specific value of the
idattribute, and increments the count.- Parameters:
id- the ID for which the count will be computed- Returns:
- the new count, ready to be used
-
getNextIDSeq
public Integer getNextIDSeq(String id)
Returns the index (ID count) for a specific value of the
idattribute without incrementing the count.- Parameters:
id- the ID for which the count will be retrieved- Returns:
- the current count
-
-