Enum ActivityType
- java.lang.Object
-
- java.lang.Enum<ActivityType>
-
- software.amazon.awssdk.services.workdocs.model.ActivityType
-
- All Implemented Interfaces:
Serializable,Comparable<ActivityType>
@Generated("software.amazon.awssdk:codegen") public enum ActivityType extends Enum<ActivityType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ActivityTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ActivityType>knownValues()StringtoString()static ActivityTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ActivityType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOCUMENT_CHECKED_IN
public static final ActivityType DOCUMENT_CHECKED_IN
-
DOCUMENT_CHECKED_OUT
public static final ActivityType DOCUMENT_CHECKED_OUT
-
DOCUMENT_RENAMED
public static final ActivityType DOCUMENT_RENAMED
-
DOCUMENT_VERSION_UPLOADED
public static final ActivityType DOCUMENT_VERSION_UPLOADED
-
DOCUMENT_VERSION_DELETED
public static final ActivityType DOCUMENT_VERSION_DELETED
-
DOCUMENT_VERSION_VIEWED
public static final ActivityType DOCUMENT_VERSION_VIEWED
-
DOCUMENT_VERSION_DOWNLOADED
public static final ActivityType DOCUMENT_VERSION_DOWNLOADED
-
DOCUMENT_RECYCLED
public static final ActivityType DOCUMENT_RECYCLED
-
DOCUMENT_RESTORED
public static final ActivityType DOCUMENT_RESTORED
-
DOCUMENT_REVERTED
public static final ActivityType DOCUMENT_REVERTED
-
DOCUMENT_SHARED
public static final ActivityType DOCUMENT_SHARED
-
DOCUMENT_UNSHARED
public static final ActivityType DOCUMENT_UNSHARED
-
DOCUMENT_SHARE_PERMISSION_CHANGED
public static final ActivityType DOCUMENT_SHARE_PERMISSION_CHANGED
-
DOCUMENT_SHAREABLE_LINK_CREATED
public static final ActivityType DOCUMENT_SHAREABLE_LINK_CREATED
-
DOCUMENT_SHAREABLE_LINK_REMOVED
public static final ActivityType DOCUMENT_SHAREABLE_LINK_REMOVED
-
DOCUMENT_SHAREABLE_LINK_PERMISSION_CHANGED
public static final ActivityType DOCUMENT_SHAREABLE_LINK_PERMISSION_CHANGED
-
DOCUMENT_MOVED
public static final ActivityType DOCUMENT_MOVED
-
DOCUMENT_COMMENT_ADDED
public static final ActivityType DOCUMENT_COMMENT_ADDED
-
DOCUMENT_COMMENT_DELETED
public static final ActivityType DOCUMENT_COMMENT_DELETED
-
DOCUMENT_ANNOTATION_ADDED
public static final ActivityType DOCUMENT_ANNOTATION_ADDED
-
DOCUMENT_ANNOTATION_DELETED
public static final ActivityType DOCUMENT_ANNOTATION_DELETED
-
FOLDER_CREATED
public static final ActivityType FOLDER_CREATED
-
FOLDER_DELETED
public static final ActivityType FOLDER_DELETED
-
FOLDER_RENAMED
public static final ActivityType FOLDER_RENAMED
-
FOLDER_RECYCLED
public static final ActivityType FOLDER_RECYCLED
-
FOLDER_RESTORED
public static final ActivityType FOLDER_RESTORED
-
FOLDER_SHARED
public static final ActivityType FOLDER_SHARED
-
FOLDER_UNSHARED
public static final ActivityType FOLDER_UNSHARED
-
FOLDER_SHARE_PERMISSION_CHANGED
public static final ActivityType FOLDER_SHARE_PERMISSION_CHANGED
-
FOLDER_SHAREABLE_LINK_CREATED
public static final ActivityType FOLDER_SHAREABLE_LINK_CREATED
-
FOLDER_SHAREABLE_LINK_REMOVED
public static final ActivityType FOLDER_SHAREABLE_LINK_REMOVED
-
FOLDER_SHAREABLE_LINK_PERMISSION_CHANGED
public static final ActivityType FOLDER_SHAREABLE_LINK_PERMISSION_CHANGED
-
FOLDER_MOVED
public static final ActivityType FOLDER_MOVED
-
UNKNOWN_TO_SDK_VERSION
public static final ActivityType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ActivityType[] 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 (ActivityType c : ActivityType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActivityType 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<ActivityType>
-
fromValue
public static ActivityType fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- ActivityType corresponding to the value
-
knownValues
public static Set<ActivityType> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownActivityTypes
-
-