TimeUnit

Contents
[ ]

Inheritance: java.lang.Object, java.lang.Enum

public enum TimeUnit extends Enum<TimeUnit>

Time unit of the project duration.

The TimeUnit enum represents different time units for specifying the duration of a project in the GroupDocs.Viewer component. It provides a set of predefined time units that can be used to represent and calculate the duration of a project, such as days, months and so on. For details, see the documentation.

Example usage:


 HtmlViewOptions pdfViewOptions = HtmlViewOptions.forEmbeddedResources();
 ProjectManagementOptions projectManagementOptions = pdfViewOptions.getProjectManagementOptions();
 projectManagementOptions.setTimeUnit(TimeUnit.MONTHS);

 try (Viewer viewer = new Viewer("document.mpp")) {
     viewer.view(pdfViewOptions);
     // Use the viewer object for further operations
 }
 

Fields

Field Description
UNSPECIFIED The unknown time scale.
DAYS Days time scale.
THIRDS_OF_MONTHS Thirds of months time scale.
MONTHS Months time scale.

Methods

Method Description
values()
valueOf(String name)

UNSPECIFIED

public static final TimeUnit UNSPECIFIED

The unknown time scale. This time unit represents an unknown or unspecified time scale.

For details, see the documentation.

DAYS

public static final TimeUnit DAYS

Days time scale. This time unit represents a one-day interval.

For details, see the documentation.

THIRDS_OF_MONTHS

public static final TimeUnit THIRDS_OF_MONTHS

Thirds of months time scale. This time unit represents a one-third of the month interval.

For details, see the documentation.

MONTHS

public static final TimeUnit MONTHS

Months time scale. This time unit represents a one-month interval.

For details, see the documentation.

values()

public static TimeUnit[] values()

Returns: com.groupdocs.viewer.options.TimeUnit[]

valueOf(String name)

public static TimeUnit valueOf(String name)

Parameters:

Parameter Type Description
name java.lang.String

Returns: TimeUnit