Enum ProfileLifeCycleEvent.Type
- java.lang.Object
-
- java.lang.Enum<ProfileLifeCycleEvent.Type>
-
- org.exoplatform.social.core.profile.ProfileLifeCycleEvent.Type
-
- All Implemented Interfaces:
Serializable,Comparable<ProfileLifeCycleEvent.Type>
- Enclosing class:
- ProfileLifeCycleEvent
public static enum ProfileLifeCycleEvent.Type extends Enum<ProfileLifeCycleEvent.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABOUT_MEAVATAR_UPDATEDBANNER_UPDATEDBASIC_UPDATEDCONTACT_UPDATEDCREATEDEXPERIENCE_UPDATEDHEADER_UPDATEDTECHNICAL_UPDATED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProfileLifeCycleEvent.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static ProfileLifeCycleEvent.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ABOUT_ME
public static final ProfileLifeCycleEvent.Type ABOUT_ME
-
AVATAR_UPDATED
public static final ProfileLifeCycleEvent.Type AVATAR_UPDATED
-
BASIC_UPDATED
public static final ProfileLifeCycleEvent.Type BASIC_UPDATED
-
CONTACT_UPDATED
public static final ProfileLifeCycleEvent.Type CONTACT_UPDATED
-
EXPERIENCE_UPDATED
public static final ProfileLifeCycleEvent.Type EXPERIENCE_UPDATED
-
HEADER_UPDATED
public static final ProfileLifeCycleEvent.Type HEADER_UPDATED
-
CREATED
public static final ProfileLifeCycleEvent.Type CREATED
-
BANNER_UPDATED
public static final ProfileLifeCycleEvent.Type BANNER_UPDATED
-
TECHNICAL_UPDATED
public static final ProfileLifeCycleEvent.Type TECHNICAL_UPDATED
-
-
Method Detail
-
values
public static ProfileLifeCycleEvent.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 (ProfileLifeCycleEvent.Type c : ProfileLifeCycleEvent.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 ProfileLifeCycleEvent.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
-
-