Package odata.msgraph.client.enums
Enum MobileAppContentFileUploadState
- java.lang.Object
-
- java.lang.Enum<MobileAppContentFileUploadState>
-
- odata.msgraph.client.enums.MobileAppContentFileUploadState
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<MobileAppContentFileUploadState>
public enum MobileAppContentFileUploadState extends Enum<MobileAppContentFileUploadState> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static MobileAppContentFileUploadStatevalueOf(String name)Returns the enum constant of this type with the specified name.static MobileAppContentFileUploadState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESS
public static final MobileAppContentFileUploadState SUCCESS
-
TRANSIENT_ERROR
public static final MobileAppContentFileUploadState TRANSIENT_ERROR
-
ERROR
public static final MobileAppContentFileUploadState ERROR
-
UNKNOWN
public static final MobileAppContentFileUploadState UNKNOWN
-
AZURE_STORAGE_URI_REQUEST_SUCCESS
public static final MobileAppContentFileUploadState AZURE_STORAGE_URI_REQUEST_SUCCESS
-
AZURE_STORAGE_URI_REQUEST_PENDING
public static final MobileAppContentFileUploadState AZURE_STORAGE_URI_REQUEST_PENDING
-
AZURE_STORAGE_URI_REQUEST_FAILED
public static final MobileAppContentFileUploadState AZURE_STORAGE_URI_REQUEST_FAILED
-
AZURE_STORAGE_URI_REQUEST_TIMED_OUT
public static final MobileAppContentFileUploadState AZURE_STORAGE_URI_REQUEST_TIMED_OUT
-
AZURE_STORAGE_URI_RENEWAL_SUCCESS
public static final MobileAppContentFileUploadState AZURE_STORAGE_URI_RENEWAL_SUCCESS
-
AZURE_STORAGE_URI_RENEWAL_PENDING
public static final MobileAppContentFileUploadState AZURE_STORAGE_URI_RENEWAL_PENDING
-
AZURE_STORAGE_URI_RENEWAL_FAILED
public static final MobileAppContentFileUploadState AZURE_STORAGE_URI_RENEWAL_FAILED
-
AZURE_STORAGE_URI_RENEWAL_TIMED_OUT
public static final MobileAppContentFileUploadState AZURE_STORAGE_URI_RENEWAL_TIMED_OUT
-
COMMIT_FILE_SUCCESS
public static final MobileAppContentFileUploadState COMMIT_FILE_SUCCESS
-
COMMIT_FILE_PENDING
public static final MobileAppContentFileUploadState COMMIT_FILE_PENDING
-
COMMIT_FILE_FAILED
public static final MobileAppContentFileUploadState COMMIT_FILE_FAILED
-
COMMIT_FILE_TIMED_OUT
public static final MobileAppContentFileUploadState COMMIT_FILE_TIMED_OUT
-
-
Method Detail
-
values
public static MobileAppContentFileUploadState[] 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 (MobileAppContentFileUploadState c : MobileAppContentFileUploadState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MobileAppContentFileUploadState 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
-
enumName
public String enumName()
- Specified by:
enumNamein interfacecom.github.davidmoten.odata.client.Enum
-
enumValue
public String enumValue()
- Specified by:
enumValuein interfacecom.github.davidmoten.odata.client.Enum
-
-