Package com.sforce.soap.metadata
Enum FeedItemType
- java.lang.Object
-
- java.lang.Enum<FeedItemType>
-
- com.sforce.soap.metadata.FeedItemType
-
- All Implemented Interfaces:
Serializable,Comparable<FeedItemType>
public enum FeedItemType extends Enum<FeedItemType>
This is a generated class for the SObject Enterprise API. Do not edit this file, as your changes will be lost.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ActivityEventEnumeration : ActivityEventAdvancedTextPostEnumeration : AdvancedTextPostAnnouncementPostEnumeration : AnnouncementPostApprovalPostEnumeration : ApprovalPostAttachArticleEventEnumeration : AttachArticleEventBasicTemplateFeedItemEnumeration : BasicTemplateFeedItemCallLogPostEnumeration : CallLogPostCanvasPostEnumeration : CanvasPostCaseCommentPostEnumeration : CaseCommentPostChangeStatusPostEnumeration : ChangeStatusPostChatTranscriptPostEnumeration : ChatTranscriptPostCollaborationGroupCreatedEnumeration : CollaborationGroupCreatedCollaborationGroupUnarchivedEnumeration : CollaborationGroupUnarchivedContentPostEnumeration : ContentPostCreateRecordEventEnumeration : CreateRecordEventDashboardComponentSnapshotEnumeration : DashboardComponentSnapshotEmailMessageEventEnumeration : EmailMessageEventFacebookPostEnumeration : FacebookPostLinkPostEnumeration : LinkPostMilestoneEventEnumeration : MilestoneEventPollPostEnumeration : PollPostProfileSkillPostEnumeration : ProfileSkillPostQuestionPostEnumeration : QuestionPostReplyPostEnumeration : ReplyPostRypplePostEnumeration : RypplePostSocialPostEnumeration : SocialPostTextPostEnumeration : TextPostTrackedChangeEnumeration : TrackedChangeUserStatusEnumeration : UserStatus
-
Field Summary
Fields Modifier and Type Field Description static Map<String,String>valuesToEnums
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static FeedItemTypevalueOf(String name)Returns the enum constant of this type with the specified name.static FeedItemType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TrackedChange
public static final FeedItemType TrackedChange
Enumeration : TrackedChange
-
UserStatus
public static final FeedItemType UserStatus
Enumeration : UserStatus
-
TextPost
public static final FeedItemType TextPost
Enumeration : TextPost
-
AdvancedTextPost
public static final FeedItemType AdvancedTextPost
Enumeration : AdvancedTextPost
-
LinkPost
public static final FeedItemType LinkPost
Enumeration : LinkPost
-
ContentPost
public static final FeedItemType ContentPost
Enumeration : ContentPost
-
PollPost
public static final FeedItemType PollPost
Enumeration : PollPost
-
RypplePost
public static final FeedItemType RypplePost
Enumeration : RypplePost
-
ProfileSkillPost
public static final FeedItemType ProfileSkillPost
Enumeration : ProfileSkillPost
-
DashboardComponentSnapshot
public static final FeedItemType DashboardComponentSnapshot
Enumeration : DashboardComponentSnapshot
-
ApprovalPost
public static final FeedItemType ApprovalPost
Enumeration : ApprovalPost
-
CaseCommentPost
public static final FeedItemType CaseCommentPost
Enumeration : CaseCommentPost
-
ReplyPost
public static final FeedItemType ReplyPost
Enumeration : ReplyPost
-
EmailMessageEvent
public static final FeedItemType EmailMessageEvent
Enumeration : EmailMessageEvent
-
CallLogPost
public static final FeedItemType CallLogPost
Enumeration : CallLogPost
-
ChangeStatusPost
public static final FeedItemType ChangeStatusPost
Enumeration : ChangeStatusPost
-
AttachArticleEvent
public static final FeedItemType AttachArticleEvent
Enumeration : AttachArticleEvent
-
MilestoneEvent
public static final FeedItemType MilestoneEvent
Enumeration : MilestoneEvent
-
ActivityEvent
public static final FeedItemType ActivityEvent
Enumeration : ActivityEvent
-
ChatTranscriptPost
public static final FeedItemType ChatTranscriptPost
Enumeration : ChatTranscriptPost
-
CollaborationGroupCreated
public static final FeedItemType CollaborationGroupCreated
Enumeration : CollaborationGroupCreated
-
CollaborationGroupUnarchived
public static final FeedItemType CollaborationGroupUnarchived
Enumeration : CollaborationGroupUnarchived
-
SocialPost
public static final FeedItemType SocialPost
Enumeration : SocialPost
-
QuestionPost
public static final FeedItemType QuestionPost
Enumeration : QuestionPost
-
FacebookPost
public static final FeedItemType FacebookPost
Enumeration : FacebookPost
-
BasicTemplateFeedItem
public static final FeedItemType BasicTemplateFeedItem
Enumeration : BasicTemplateFeedItem
-
CreateRecordEvent
public static final FeedItemType CreateRecordEvent
Enumeration : CreateRecordEvent
-
CanvasPost
public static final FeedItemType CanvasPost
Enumeration : CanvasPost
-
AnnouncementPost
public static final FeedItemType AnnouncementPost
Enumeration : AnnouncementPost
-
-
Method Detail
-
values
public static FeedItemType[] 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 (FeedItemType c : FeedItemType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FeedItemType 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<FeedItemType>
-
-