Package com.dropbox.core.v2.sharing
Enum ShareFolderJobStatus.Tag
- java.lang.Object
-
- java.lang.Enum<ShareFolderJobStatus.Tag>
-
- com.dropbox.core.v2.sharing.ShareFolderJobStatus.Tag
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ShareFolderJobStatus.Tag>
- Enclosing class:
- ShareFolderJobStatus
public static enum ShareFolderJobStatus.Tag extends java.lang.Enum<ShareFolderJobStatus.Tag>
Discriminating tag type forShareFolderJobStatus.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPLETEThe share job has finished.FAILEDIN_PROGRESSThe asynchronous job is still in progress.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ShareFolderJobStatus.TagvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ShareFolderJobStatus.Tag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IN_PROGRESS
public static final ShareFolderJobStatus.Tag IN_PROGRESS
The asynchronous job is still in progress.
-
COMPLETE
public static final ShareFolderJobStatus.Tag COMPLETE
The share job has finished. The value is the metadata for the folder.
-
FAILED
public static final ShareFolderJobStatus.Tag FAILED
-
-
Method Detail
-
values
public static ShareFolderJobStatus.Tag[] 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 (ShareFolderJobStatus.Tag c : ShareFolderJobStatus.Tag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ShareFolderJobStatus.Tag valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-