Class ContentIncludeStack
- java.lang.Object
-
- com.atlassian.confluence.renderer.ContentIncludeStack
-
public class ContentIncludeStack extends Object
A simple ThreadLocal stack to prevent circular content includes.
-
-
Constructor Summary
Constructors Constructor Description ContentIncludeStack()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
contains(ContentEntityObject c)
static boolean
isEmpty()
static ContentEntityObject
peek()
static ContentEntityObject
pop()
static void
push(ContentEntityObject c)
-
-
-
Method Detail
-
pop
public static ContentEntityObject pop()
-
push
public static void push(ContentEntityObject c)
-
contains
public static boolean contains(ContentEntityObject c)
-
peek
public static ContentEntityObject peek()
-
isEmpty
public static boolean isEmpty()
-
-