Package com.aspose.tasks
Class WorkDay
- java.lang.Object
-
- com.aspose.tasks.WorkDay
-
public class WorkDay extends Object
Represents a work day.
-
-
Constructor Summary
Constructors Constructor Description WorkDay()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getDayType()
Returns the type of a day.boolean
getDayWorking()
Determines whether the specified date or day type is working.void
setDayType(int value)
Sets the type of a day.void
setDayWorking(boolean value)
Determines whether the specified date or day type is working.
-
-
-
Method Detail
-
getDayType
public final int getDayType()
Returns the type of a day.
- Returns:
- the type of a day (
Aspose.Tasks.DayType
).
-
setDayType
public final void setDayType(int value)
Sets the type of a day.- Parameters:
value
- the type of a dayAspose.Tasks.DayType
.
-
getDayWorking
public final boolean getDayWorking()
Determines whether the specified date or day type is working. Read/write
bool
.- Returns:
- true if the day is working.
-
setDayWorking
public final void setDayWorking(boolean value)
Determines whether the specified date or day type is working.- Parameters:
value
- boolean that determines whether the specified date or day type is working.
-
-