Interface DiagnosticsLoggers
- 
public interface DiagnosticsLoggersThis 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.Enumerationelements()Returns an enumeration ofDiagnosticsLoggerobjects.DiagnosticsLoggerget(int index)Returns the diagnostics logger at a given index.DiagnosticsLoggergetItemByName(java.lang.String name)Returns the diagnostics logger in the collection that has the name passed.booleanisEmpty()Conveys if this collection is empty.intsize()Returns the number of diagnostics logger in the collection. 
 - 
 
- 
- 
Method Detail
- 
elements
java.util.Enumeration elements()
Returns an enumeration ofDiagnosticsLoggerobjects.- 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.
 
 
 - 
 
 -