filenet.vw.api
Class VWTimeIntervalDefinition
- java.lang.Object
-
- filenet.vw.api.VWTimeIntervalDefinition
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Cloneable
public final class VWTimeIntervalDefinition extends java.lang.Object implements java.io.Serializable, java.lang.CloneableUse this class to create, read, delete, or modify Time Interval definition properties.- Since:
- CPE 5.2.0.3
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description intgetEndTime()Gets the end time value for this time interval definition.intgetStartTime()Gets the start time value for this time interval definition.voidsetEndTime(int theEndTime)Sets the end time value for this time interval definition.voidsetStartTime(int theStartTime)Sets the start time value for this time interval definition.
-
-
-
Method Detail
-
getStartTime
public int getStartTime()
Gets the start time value for this time interval definition.- Returns:
- The start time in minutes. A value of zero means 12:00 am.
- Since:
- CPE 5.2.0.3
- See Also:
VWTimeIntervalDefinition.setStartTime(int)
-
setStartTime
public void setStartTime(int theStartTime) throws VWExceptionSets the start time value for this time interval definition.- Parameters:
theStartTime- The beginning of this time interval in minutes. Specify the number of minutes from midnight (0). A value of zero means 12:00 am. The maximum value is 24 hours (24 * 60).- Throws:
VWException- Thrown if the start time is less than 0 or greater than 24 hours (in minutes).- Since:
- CPE 5.2.0.3
-
getEndTime
public int getEndTime()
Gets the end time value for this time interval definition.- Returns:
- The start time in minutes. A value of zero means 12:00 am.
- Since:
- CPE 5.2.0.3
- See Also:
VWTimeIntervalDefinition.setEndTime(int)
-
setEndTime
public void setEndTime(int theEndTime) throws VWExceptionSets the end time value for this time interval definition. The value must be greater than the start time value.- Parameters:
theEndTime- The end of this time interval in minutes. Specify the number of minutes from midnight (0). A value of zero means 12:00 am. The maximum value is 24 hours (24 * 60).- Throws:
VWException- Thrown if the end time is less than the start time or greater than 24 hours (in minutes).- Since:
- CPE 5.2.0.3
-
-