All Downloads are FREE. Search and download functionalities are using the official Maven repository.

microsoft.exchange.webservices.data.AppointmentType Maven / Gradle / Ivy

Go to download

The source came from http://archive.msdn.microsoft.com/ewsjavaapi Support for Maven has been added.

The newest version!
/**************************************************************************
 * copyright file="AppointmentType.java" company="Microsoft"
 *     Copyright (c) Microsoft Corporation.  All rights reserved.
 * 
 * Defines the AppointmentType.java.
 **************************************************************************/
package microsoft.exchange.webservices.data;

/**
 * Defines the type of an appointment.
 */
public enum AppointmentType {
	// The appointment is non-recurring.
	/** The Single. */
	Single,

	// The appointment is an occurrence of a recurring appointment.
	/** The Occurrence. */
	Occurrence,

	// The appointment is an exception of a recurring appointment.
	/** The Exception. */
	Exception,

	// The appointment is the recurring master of a series.
	/** The Recurring master. */
	RecurringMaster
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy