Enum ActivityStorageException.Type
- java.lang.Object
-
- java.lang.Enum<ActivityStorageException.Type>
-
- org.exoplatform.social.core.storage.ActivityStorageException.Type
-
- All Implemented Interfaces:
Serializable,Comparable<ActivityStorageException.Type>
- Enclosing class:
- ActivityStorageException
public static enum ActivityStorageException.Type extends Enum<ActivityStorageException.Type>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static ActivityStorageException.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static ActivityStorageException.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ILLEGAL_ARGUMENTS
public static final ActivityStorageException.Type ILLEGAL_ARGUMENTS
-
FAILED_TO_SAVE_ACTIVITY
public static final ActivityStorageException.Type FAILED_TO_SAVE_ACTIVITY
-
FAILED_TO_ATTACH_FILES_TO_ACTIVITY
public static final ActivityStorageException.Type FAILED_TO_ATTACH_FILES_TO_ACTIVITY
-
FAILED_TO_GET_ACTIVITY
public static final ActivityStorageException.Type FAILED_TO_GET_ACTIVITY
-
FAILED_TO_UPDATE_ACTIVITY
public static final ActivityStorageException.Type FAILED_TO_UPDATE_ACTIVITY
-
FAILED_TO_DELETE_ACTIVITY
public static final ActivityStorageException.Type FAILED_TO_DELETE_ACTIVITY
-
FAILED_TO_SAVE_COMMENT
public static final ActivityStorageException.Type FAILED_TO_SAVE_COMMENT
-
FAILED_TO_DELETE_COMMENT
public static final ActivityStorageException.Type FAILED_TO_DELETE_COMMENT
-
FAILED_TO_GET_NUMBER_OF_COMMENTS
public static final ActivityStorageException.Type FAILED_TO_GET_NUMBER_OF_COMMENTS
-
FAILED_TO_GET_ACTIVITIES
public static final ActivityStorageException.Type FAILED_TO_GET_ACTIVITIES
-
FAILED_TO_GET_ACTIVITIES_OF_CONNECTIONS
public static final ActivityStorageException.Type FAILED_TO_GET_ACTIVITIES_OF_CONNECTIONS
-
FAILED_TO_GET_ACTIVITIES_OF_CONNECTIONS_WITH_OFFSET_LIMIT
public static final ActivityStorageException.Type FAILED_TO_GET_ACTIVITIES_OF_CONNECTIONS_WITH_OFFSET_LIMIT
-
FAILED_TO_GET_NUMBER_OF_ACTIVITIES_OF_CONNECTIONS
public static final ActivityStorageException.Type FAILED_TO_GET_NUMBER_OF_ACTIVITIES_OF_CONNECTIONS
-
FAILED_TO_GET_ACTIVITIES_COUNT
public static final ActivityStorageException.Type FAILED_TO_GET_ACTIVITIES_COUNT
-
FAILED_TO_GET_NUMBER_OF_NEWER_ON_ACTIVITIES_OF_CONNECTIONS
public static final ActivityStorageException.Type FAILED_TO_GET_NUMBER_OF_NEWER_ON_ACTIVITIES_OF_CONNECTIONS
-
FAILED_TO_GET_NEWER_ON_ACTIVITIES_OF_CONNECTIONS
public static final ActivityStorageException.Type FAILED_TO_GET_NEWER_ON_ACTIVITIES_OF_CONNECTIONS
-
FAILED_TO_GET_OLDER_ON_ACTIVITIES_OF_CONNECTIONS
public static final ActivityStorageException.Type FAILED_TO_GET_OLDER_ON_ACTIVITIES_OF_CONNECTIONS
-
FAILED_TO_GET_NUMBER_OF_OLDER_ON_ACTIVITIES_OF_CONNECTIONS
public static final ActivityStorageException.Type FAILED_TO_GET_NUMBER_OF_OLDER_ON_ACTIVITIES_OF_CONNECTIONS
-
FAILED_TO_GET_USER_SPACE_ACTIVITIES_WITH_OFFSET_LIMIT
public static final ActivityStorageException.Type FAILED_TO_GET_USER_SPACE_ACTIVITIES_WITH_OFFSET_LIMIT
-
FAILED_TO_GET_NUMBER_OF_USER_SPACE_ACTIVITIES
public static final ActivityStorageException.Type FAILED_TO_GET_NUMBER_OF_USER_SPACE_ACTIVITIES
-
-
Method Detail
-
values
public static ActivityStorageException.Type[] 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 (ActivityStorageException.Type c : ActivityStorageException.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActivityStorageException.Type 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<ActivityStorageException.Type>
-
-