com.atlassian.confluence.search.service
Enum ContentTypeEnum
java.lang.Object
java.lang.Enum<ContentTypeEnum>
com.atlassian.confluence.search.service.ContentTypeEnum
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ContentTypeEnum>
public enum ContentTypeEnum
- extends java.lang.Enum<ContentTypeEnum>
An enum representing the different content types that may be specified in a search.
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
PAGE
public static final ContentTypeEnum PAGE
COMMENT
public static final ContentTypeEnum COMMENT
BLOG
public static final ContentTypeEnum BLOG
ATTACHMENT
public static final ContentTypeEnum ATTACHMENT
PERSONAL_INFORMATION
public static final ContentTypeEnum PERSONAL_INFORMATION
SPACE_DESCRIPTION
public static final ContentTypeEnum SPACE_DESCRIPTION
PERSONAL_SPACE_DESCRIPTION
public static final ContentTypeEnum PERSONAL_SPACE_DESCRIPTION
MAIL
public static final ContentTypeEnum MAIL
USER_STATUS
public static final ContentTypeEnum USER_STATUS
SPACE
public static final ContentTypeEnum SPACE
DRAFT
public static final ContentTypeEnum DRAFT
CUSTOM
public static final ContentTypeEnum CUSTOM
values
public static ContentTypeEnum[] 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 (ContentTypeEnum c : ContentTypeEnum.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ContentTypeEnum valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
getRepresentation
public java.lang.String getRepresentation()
hasRepresentation
public boolean hasRepresentation(java.lang.String key)
getType
public java.lang.Class<? extends com.atlassian.core.bean.EntityObject> getType()
getTypeName
public java.lang.String getTypeName()
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Enum<ContentTypeEnum>
getByRepresentation
public static ContentTypeEnum getByRepresentation(java.lang.String representation)
- Parameters:
representation
- the String representation of the enum. e.g. Page.CONTENT_TYPE
- Returns:
- the ContentTypeEnum for the supplied String. null is returned if the parameter does not map to a
ContentTypeEnum.
getByClassName
public static ContentTypeEnum getByClassName(java.lang.String className)
- Parameters:
className
- fully qualified class name e.g. "com.atlassian.confluence.pages.Page"
- Returns:
- the ContentTypeEnum for the supplied class name. null if none found.
Copyright © 2003-2013 Atlassian. All Rights Reserved.