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 WebScheduledMaintenance
add(WebScheduledMaintenance scheduledMaintenance)
Create a new ScheduledMaintenance object at the end of this collection.void
clear()
Remove all ScheduledMaintenance objects in this collection.WebScheduledMaintenance
get(int index)
Returns the ScheduledMaintenance in this collection according to the index (0-based).int
size()
Returns the size of this collection.
-
-
-
Method Detail
-
size
public int size()
Description copied from interface:WebScheduledMaintenances
Returns the size of this collection.- Specified by:
size
in interfaceWebScheduledMaintenances
- Returns:
- The size of this collection.
-
get
public WebScheduledMaintenance get(int index) throws java.lang.IndexOutOfBoundsException
Description copied from interface:WebScheduledMaintenances
Returns the ScheduledMaintenance in this collection according to the index (0-based).- Specified by:
get
in 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:WebScheduledMaintenances
Create a new ScheduledMaintenance object at the end of this collection.- Specified by:
add
in interfaceWebScheduledMaintenances
- Returns:
- The newly added ScheduledMaintenance object.
-
clear
public void clear()
Description copied from interface:WebScheduledMaintenances
Remove all ScheduledMaintenance objects in this collection.- Specified by:
clear
in interfaceWebScheduledMaintenances
-
-