Enum PeopleRestService.ConnectionInfoRestOut.Field
- java.lang.Object
-
- java.lang.Enum<PeopleRestService.ConnectionInfoRestOut.Field>
-
- org.exoplatform.social.service.rest.PeopleRestService.ConnectionInfoRestOut.Field
-
- All Implemented Interfaces:
Serializable,Comparable<PeopleRestService.ConnectionInfoRestOut.Field>
- Enclosing class:
- PeopleRestService.ConnectionInfoRestOut
public static enum PeopleRestService.ConnectionInfoRestOut.Field extends Enum<PeopleRestService.ConnectionInfoRestOut.Field>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVITY_IDactivity textACTIVITY_TITLEactivity textAVATAR_URLfull url of avatarDISPLAY_NAMEUser DisplaynamePOSITIONIdentity's PositionPRETTY_POSTED_TIMEactivity pretty posted time ( ago style )PROFILE_URLfull url of profile
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static PeopleRestService.ConnectionInfoRestOut.FieldvalueOf(String name)Returns the enum constant of this type with the specified name.static PeopleRestService.ConnectionInfoRestOut.Field[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISPLAY_NAME
public static final PeopleRestService.ConnectionInfoRestOut.Field DISPLAY_NAME
User Displayname
-
AVATAR_URL
public static final PeopleRestService.ConnectionInfoRestOut.Field AVATAR_URL
full url of avatar
-
PROFILE_URL
public static final PeopleRestService.ConnectionInfoRestOut.Field PROFILE_URL
full url of profile
-
ACTIVITY_TITLE
public static final PeopleRestService.ConnectionInfoRestOut.Field ACTIVITY_TITLE
activity text
-
ACTIVITY_ID
public static final PeopleRestService.ConnectionInfoRestOut.Field ACTIVITY_ID
activity text
-
PRETTY_POSTED_TIME
public static final PeopleRestService.ConnectionInfoRestOut.Field PRETTY_POSTED_TIME
activity pretty posted time ( ago style )
-
POSITION
public static final PeopleRestService.ConnectionInfoRestOut.Field POSITION
Identity's Position
-
-
Method Detail
-
values
public static PeopleRestService.ConnectionInfoRestOut.Field[] 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 (PeopleRestService.ConnectionInfoRestOut.Field c : PeopleRestService.ConnectionInfoRestOut.Field.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PeopleRestService.ConnectionInfoRestOut.Field 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<PeopleRestService.ConnectionInfoRestOut.Field>
-
-