com.atlassian.confluence.api.model.content
Class ContentType

java.lang.Object
  extended by com.atlassian.confluence.api.model.BaseApiEnum
      extended by com.atlassian.confluence.api.model.content.ContentType
All Implemented Interfaces:
ApiEnum

@ExperimentalApi
public final class ContentType
extends BaseApiEnum

Represents a type of content. This class is a simple wrapper around a string. For built-in content types it will match the internal String name for the content type. For custom content types it will be the plugin key of the content type's provider.


Field Summary
static ContentType ATTACHMENT
           
static ContentType BLOG_POST
           
static List<ContentType> BUILT_IN
           
static ContentType COMMENT
           
static ContentType PAGE
           
 
Fields inherited from class com.atlassian.confluence.api.model.BaseApiEnum
value
 
Method Summary
 String getType()
           
static ContentType valueOf(String type)
          Return the ContentType for the given type string.
static Set<ContentType> valuesOf(Iterable<String> types)
          Return the ContentTypes for the given set of type strings.
 
Methods inherited from class com.atlassian.confluence.api.model.BaseApiEnum
equals, getValue, hashCode, in, serialise, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

PAGE

public static final ContentType PAGE

BLOG_POST

public static final ContentType BLOG_POST

COMMENT

public static final ContentType COMMENT

ATTACHMENT

public static final ContentType ATTACHMENT

BUILT_IN

public static final List<ContentType> BUILT_IN
Method Detail

valueOf

public static ContentType valueOf(String type)
Return the ContentType for the given type string. Built-in type constants will be returned if matched.


valuesOf

public static Set<ContentType> valuesOf(Iterable<String> types)
Return the ContentTypes for the given set of type strings. Built-in type constants will be returned if matched.


getType

public String getType()


Copyright © 2003–2015 Atlassian. All rights reserved.