Package com.microstrategy.web.objects
Class WebScheduledMaintenancesImpl
- java.lang.Object
-
- com.microstrategy.web.objects.WebScheduledMaintenancesImpl
-
- All Implemented Interfaces:
WebScheduledMaintenances
public class WebScheduledMaintenancesImpl extends java.lang.Object implements WebScheduledMaintenances
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description WebScheduledMaintenanceadd(WebScheduledMaintenance scheduledMaintenance)Create a new ScheduledMaintenance object at the end of this collection.voidclear()Remove all ScheduledMaintenance objects in this collection.WebScheduledMaintenanceget(int index)Returns the ScheduledMaintenance in this collection according to the index (0-based).intsize()Returns the size of this collection.
-
-
-
Method Detail
-
size
public int size()
Description copied from interface:WebScheduledMaintenancesReturns the size of this collection.- Specified by:
sizein interfaceWebScheduledMaintenances- Returns:
- The size of this collection.
-
get
public WebScheduledMaintenance get(int index) throws java.lang.IndexOutOfBoundsException
Description copied from interface:WebScheduledMaintenancesReturns the ScheduledMaintenance in this collection according to the index (0-based).- Specified by:
getin interfaceWebScheduledMaintenances- Parameters:
index- The index of the ScheduledMaintenance object in the collection (0-based).- Returns:
- the ScheduledMaintenance object in this colleciton according to the index.
- Throws:
java.lang.IndexOutOfBoundsException- Thrown when the index is less than 0 or greater or equals to the size of the collection.
-
add
public WebScheduledMaintenance add(WebScheduledMaintenance scheduledMaintenance)
Description copied from interface:WebScheduledMaintenancesCreate a new ScheduledMaintenance object at the end of this collection.- Specified by:
addin interfaceWebScheduledMaintenances- Returns:
- The newly added ScheduledMaintenance object.
-
clear
public void clear()
Description copied from interface:WebScheduledMaintenancesRemove all ScheduledMaintenance objects in this collection.- Specified by:
clearin interfaceWebScheduledMaintenances
-
-