Package com.microstrategy.web.objects
Interface WebScheduleTriggerTimeDaily
-
- All Superinterfaces:
KeyedObject
,WebDisplayUnit
,WebFeatures
,WebObjectInfo
,WebPromptSite
,WebScheduleTrigger
,WebScheduleTriggerTime
public interface WebScheduleTriggerTimeDaily extends WebScheduleTriggerTime
- Since:
- MicroStrategy Web 9.0.0
-
-
Field Summary
-
Fields inherited from interface com.microstrategy.web.objects.WebScheduleTriggerTime
daily, monthly, TypeDayNumeric, TypeDayOfWeek, TypeHour, TypeMinute, undefined, weekly, yearly
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getDailyRepeatValue()
Return the number of days between triggers if type isWebScheduleTriggerTime.TypeDayNumeric
int
getDailyType()
Return the type of day used for this trigger's trigger dayvoid
setDailyRepeatValue(int value)
Sets teh number od days between triggers.void
setDailyType(int type)
Set teh type of day used for this trigger's trigger day-
Methods inherited from interface com.microstrategy.utils.KeyedObject
_getObKey
-
Methods inherited from interface com.microstrategy.web.objects.WebDisplayUnit
addDetails, applyVisitor, canHighlight, getChildUnits, getDisplayName, getDisplayUnitType, hasDetails, highlightUnit, highlightUnit, isHighlighted, isObjectInfo, isSelected, setDisplayName, setSelected
-
Methods inherited from interface com.microstrategy.web.objects.WebFeatures
isFeatureAvailable, isFeatureAvailable
-
Methods inherited from interface com.microstrategy.web.objects.WebObjectInfo
buildShortObjectAttributes, buildShortXML, getAbbreviation, getAccessGranted, getAncestors, getCardStatus, getCertifiedInfo, getComments, getContainerDid, getContainerType, getCreationTime, getCreationTimeStamp, getDataSources, getDescription, getExtendedType, getFactory, getFlags, getIconPath, getID, getModificationTime, getModificationTimeStamp, getName, getNonSchedulable, getOtherNameTransCount, getOwner, getParent, getPreSaveAsFlags, getProjectId, getProjectName, getPropertyFlags, getPropertySetFilter, getPropertySets, getRecommendationInfo, getSecurity, getState, getSubType, getType, getVersionID, getViewMediaSettings, getVisualizationViewMode, getXML, getXML, hasOwner, isAncestorNamedFolder, isDirty, isEmbedded, isHidden, isNew, isPopulated, populate, populate, setAbbreviation, setComments, setDataSources, setDescription, setExtendedType, setFlags, setHidden, setIconPath, setName, setNonSchedulable, setPreSaveAsFlags, setPropertyFlags
-
Methods inherited from interface com.microstrategy.web.objects.WebPromptSite
getPromptInstances
-
Methods inherited from interface com.microstrategy.web.objects.WebScheduleTrigger
getNextDelivery, getNextDeliveryZonedDateTime, getStartDate, getStopDate, getTriggerType, isStopDateSet, setStartDate, setStopDate, setToDaily, setToEvent, setToMonthly, setToWeekly, setToYearly
-
Methods inherited from interface com.microstrategy.web.objects.WebScheduleTriggerTime
disableTriggerRepeat, enableTriggerRepeat, enableTriggerRepeat, getMinutesAfterMidnight, getRepeatStart, getRepeatStop, getRepeatValue, getRepeatValueType, getTriggerSubType, getTriggerTime, isTriggerRepeatable, setMinutesAfterMidnight, setRepeatStart, setRepeatStop, setTriggerTime
-
-
-
-
Method Detail
-
getDailyType
int getDailyType()
Return the type of day used for this trigger's trigger day- Returns:
- int type of day. Either
WebScheduleTriggerTime.TypeDayNumeric
orWebScheduleTriggerTime.TypeDayOfWeek
-
setDailyType
void setDailyType(int type)
Set teh type of day used for this trigger's trigger day- Parameters:
type
- int type of day. EitherWebScheduleTriggerTime.TypeDayNumeric
orWebScheduleTriggerTime.TypeDayOfWeek
-
getDailyRepeatValue
int getDailyRepeatValue()
Return the number of days between triggers if type isWebScheduleTriggerTime.TypeDayNumeric
- Returns:
- int number of days
-
setDailyRepeatValue
void setDailyRepeatValue(int value)
Sets teh number od days between triggers. Ignored if type is notWebScheduleTriggerTime.TypeDayNumeric
- Parameters:
value
- int number of days
-
-