Interface Caches
-
public interface Caches
The interfacesCaches
is a collection ofCache
. It is usually grouped at the project level.- Since:
- MicroStrategy Web 9.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Cache
get(int i)
Returns theCache
object at the specified index.int
getCount()
Returns the number ofCache
objects in this collection.java.lang.String
getProjectDSSID()
Returns the DSSID of the project to which the cache belongs.java.lang.String
getProjectName()
Returns the name of the project to which the cache belongs.
-
-
-
Method Detail
-
get
Cache get(int i)
Returns theCache
object at the specified index.- Parameters:
i
- the index of aCache
object- Returns:
- the
Cache
object at the specified index.
-
getProjectName
java.lang.String getProjectName()
Returns the name of the project to which the cache belongs.- Returns:
- the project name.
-
getProjectDSSID
java.lang.String getProjectDSSID()
Returns the DSSID of the project to which the cache belongs.- Returns:
- the project DSSID.
-
getCount
int getCount()
Returns the number ofCache
objects in this collection.- Returns:
- the number of
Cache
objects
-
-