Enum UploadItem.CreateAction
- java.lang.Object
-
- java.lang.Enum<UploadItem.CreateAction>
-
- microsoft.exchange.webservices.data.core.service.item.UploadItem.CreateAction
-
- All Implemented Interfaces:
Serializable,Comparable<UploadItem.CreateAction>
- Enclosing class:
- UploadItem
public static enum UploadItem.CreateAction extends Enum<UploadItem.CreateAction>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UploadItem.CreateActionvalueOf(String name)Returns the enum constant of this type with the specified name.static UploadItem.CreateAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CreateNew
public static final UploadItem.CreateAction CreateNew
-
Update
public static final UploadItem.CreateAction Update
-
-
Method Detail
-
values
public static UploadItem.CreateAction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UploadItem.CreateAction c : UploadItem.CreateAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UploadItem.CreateAction valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-