Enum IdentityStorageException.Type
- java.lang.Object
-
- java.lang.Enum<IdentityStorageException.Type>
-
- org.exoplatform.social.core.storage.IdentityStorageException.Type
-
- All Implemented Interfaces:
Serializable,Comparable<IdentityStorageException.Type>
- Enclosing class:
- IdentityStorageException
public static enum IdentityStorageException.Type extends Enum<IdentityStorageException.Type>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static IdentityStorageException.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static IdentityStorageException.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FAIL_TO_SAVE_IDENTITY
public static final IdentityStorageException.Type FAIL_TO_SAVE_IDENTITY
-
FAIL_TO_UPDATE_IDENTITY
public static final IdentityStorageException.Type FAIL_TO_UPDATE_IDENTITY
-
FAIL_TO_DELETE_IDENTITY
public static final IdentityStorageException.Type FAIL_TO_DELETE_IDENTITY
-
FAIL_TO_DELETE_PROFILE
public static final IdentityStorageException.Type FAIL_TO_DELETE_PROFILE
-
FAIL_TO_FIND_IDENTITY_BY_NODE_ID
public static final IdentityStorageException.Type FAIL_TO_FIND_IDENTITY_BY_NODE_ID
-
FAIL_TO_FIND_IDENTITY
public static final IdentityStorageException.Type FAIL_TO_FIND_IDENTITY
-
FAIL_TO_GET_IDENTITY_BY_FIRSTCHAR_COUNT
public static final IdentityStorageException.Type FAIL_TO_GET_IDENTITY_BY_FIRSTCHAR_COUNT
-
FAIL_TO_GET_IDENTITY_BY_FIRSTCHAR
public static final IdentityStorageException.Type FAIL_TO_GET_IDENTITY_BY_FIRSTCHAR
-
FAIL_TO_GET_IDENTITY_BY_PROFILE_FILTER_COUNT
public static final IdentityStorageException.Type FAIL_TO_GET_IDENTITY_BY_PROFILE_FILTER_COUNT
-
FAIL_TO_GET_IDENTITY_BY_PROFILE_FILTER
public static final IdentityStorageException.Type FAIL_TO_GET_IDENTITY_BY_PROFILE_FILTER
-
FAIL_TO_SAVE_PROFILE
public static final IdentityStorageException.Type FAIL_TO_SAVE_PROFILE
-
FAIL_TO_UPDATE_PROFILE
public static final IdentityStorageException.Type FAIL_TO_UPDATE_PROFILE
-
FAIL_TO_ADD_OR_MODIFY_PROPERTIES
public static final IdentityStorageException.Type FAIL_TO_ADD_OR_MODIFY_PROPERTIES
-
FAIL_TO_GET_IDENTITIES_COUNT
public static final IdentityStorageException.Type FAIL_TO_GET_IDENTITIES_COUNT
-
FAIL_TO_LOAD_PROFILE
public static final IdentityStorageException.Type FAIL_TO_LOAD_PROFILE
-
FAIL_TO_LOAD_AVATAR
public static final IdentityStorageException.Type FAIL_TO_LOAD_AVATAR
-
FAIL_TO_GET_IDENTITY_SERVICE_HOME
public static final IdentityStorageException.Type FAIL_TO_GET_IDENTITY_SERVICE_HOME
-
FAIL_TO_GET_PROFILE_SERVICE_HOME
public static final IdentityStorageException.Type FAIL_TO_GET_PROFILE_SERVICE_HOME
-
FAIL_TO_GET_OR_CREAT_PROFILE_HOME_NODE
public static final IdentityStorageException.Type FAIL_TO_GET_OR_CREAT_PROFILE_HOME_NODE
-
FAIL_TO_SET_PROPERTIES
public static final IdentityStorageException.Type FAIL_TO_SET_PROPERTIES
-
AVATAR_EXCEEDS_LIMIT
public static final IdentityStorageException.Type AVATAR_EXCEEDS_LIMIT
-
BANNER_EXCEEDS_LIMIT
public static final IdentityStorageException.Type BANNER_EXCEEDS_LIMIT
-
-
Method Detail
-
values
public static IdentityStorageException.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 (IdentityStorageException.Type c : IdentityStorageException.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 IdentityStorageException.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<IdentityStorageException.Type>
-
-