Interface DiagnosticsLoggers
-
public interface DiagnosticsLoggers
This interface represents the collection of diagnostics loggers for a givenDiagnosticsConfiguration
.- Since:
- MicroStrategy Web 7.5.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Enumeration
elements()
Returns an enumeration ofDiagnosticsLogger
objects.DiagnosticsLogger
get(int index)
Returns the diagnostics logger at a given index.DiagnosticsLogger
getItemByName(java.lang.String name)
Returns the diagnostics logger in the collection that has the name passed.boolean
isEmpty()
Conveys if this collection is empty.int
size()
Returns the number of diagnostics logger in the collection.
-
-
-
Method Detail
-
elements
java.util.Enumeration elements()
Returns an enumeration ofDiagnosticsLogger
objects.- Returns:
- Enumeration enumeration of loggers.
-
get
DiagnosticsLogger get(int index)
Returns the diagnostics logger at a given index.- Parameters:
index
- the index for the desired logger.- Returns:
- DiagnosticsLogger the logger at the index passed.
-
size
int size()
Returns the number of diagnostics logger in the collection.- Returns:
- int the number of loggers.
-
isEmpty
boolean isEmpty()
Conveys if this collection is empty.- Returns:
- boolean True, if there are no loggers.
-
getItemByName
DiagnosticsLogger getItemByName(java.lang.String name)
Returns the diagnostics logger in the collection that has the name passed.- Parameters:
name
- the name for the logger queried.- Returns:
- DiagnosticsLogger the logger with the name passed.
-
-