All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sforce.soap.metadata.FeedItemType Maven / Gradle / Ivy

There is a newer version: 7.4.3.112-ga112
Show newest version
package com.sforce.soap.metadata;

import java.util.EnumSet;
import java.util.HashMap;
import java.util.Map;

/**
 * This is a generated class for the SObject Enterprise API.
 * Do not edit this file, as your changes will be lost.
 */
public enum FeedItemType {


  
	/**
	 * Enumeration  : TrackedChange
	 */
	TrackedChange("TrackedChange"),

  
	/**
	 * Enumeration  : UserStatus
	 */
	UserStatus("UserStatus"),

  
	/**
	 * Enumeration  : TextPost
	 */
	TextPost("TextPost"),

  
	/**
	 * Enumeration  : AdvancedTextPost
	 */
	AdvancedTextPost("AdvancedTextPost"),

  
	/**
	 * Enumeration  : LinkPost
	 */
	LinkPost("LinkPost"),

  
	/**
	 * Enumeration  : ContentPost
	 */
	ContentPost("ContentPost"),

  
	/**
	 * Enumeration  : PollPost
	 */
	PollPost("PollPost"),

  
	/**
	 * Enumeration  : RypplePost
	 */
	RypplePost("RypplePost"),

  
	/**
	 * Enumeration  : ProfileSkillPost
	 */
	ProfileSkillPost("ProfileSkillPost"),

  
	/**
	 * Enumeration  : DashboardComponentSnapshot
	 */
	DashboardComponentSnapshot("DashboardComponentSnapshot"),

  
	/**
	 * Enumeration  : ApprovalPost
	 */
	ApprovalPost("ApprovalPost"),

  
	/**
	 * Enumeration  : CaseCommentPost
	 */
	CaseCommentPost("CaseCommentPost"),

  
	/**
	 * Enumeration  : ReplyPost
	 */
	ReplyPost("ReplyPost"),

  
	/**
	 * Enumeration  : EmailMessageEvent
	 */
	EmailMessageEvent("EmailMessageEvent"),

  
	/**
	 * Enumeration  : CallLogPost
	 */
	CallLogPost("CallLogPost"),

  
	/**
	 * Enumeration  : ChangeStatusPost
	 */
	ChangeStatusPost("ChangeStatusPost"),

  
	/**
	 * Enumeration  : AttachArticleEvent
	 */
	AttachArticleEvent("AttachArticleEvent"),

  
	/**
	 * Enumeration  : MilestoneEvent
	 */
	MilestoneEvent("MilestoneEvent"),

  
	/**
	 * Enumeration  : ActivityEvent
	 */
	ActivityEvent("ActivityEvent"),

  
	/**
	 * Enumeration  : ChatTranscriptPost
	 */
	ChatTranscriptPost("ChatTranscriptPost"),

  
	/**
	 * Enumeration  : CollaborationGroupCreated
	 */
	CollaborationGroupCreated("CollaborationGroupCreated"),

  
	/**
	 * Enumeration  : CollaborationGroupUnarchived
	 */
	CollaborationGroupUnarchived("CollaborationGroupUnarchived"),

  
	/**
	 * Enumeration  : SocialPost
	 */
	SocialPost("SocialPost"),

  
	/**
	 * Enumeration  : QuestionPost
	 */
	QuestionPost("QuestionPost"),

  
	/**
	 * Enumeration  : FacebookPost
	 */
	FacebookPost("FacebookPost"),

  
	/**
	 * Enumeration  : BasicTemplateFeedItem
	 */
	BasicTemplateFeedItem("BasicTemplateFeedItem"),

  
	/**
	 * Enumeration  : CreateRecordEvent
	 */
	CreateRecordEvent("CreateRecordEvent"),

  
	/**
	 * Enumeration  : CanvasPost
	 */
	CanvasPost("CanvasPost"),

  
	/**
	 * Enumeration  : AnnouncementPost
	 */
	AnnouncementPost("AnnouncementPost"),

;

	public static Map valuesToEnums;

	static {
   		valuesToEnums = new HashMap();
   		for (FeedItemType e : EnumSet.allOf(FeedItemType.class)) {
   			valuesToEnums.put(e.toString(), e.name());
   		}
   	}

   	private String value;

   	private FeedItemType(String value) {
   		this.value = value;
   	}

   	@Override
   	public String toString() {
   		return value;
   	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy