Class Category
- java.lang.Object
-
- com.atlassian.confluence.search.contentnames.Category
-
public class Category extends Object
Represents a category in which results coming back from a content name search can be put in.
-
-
Field Summary
Fields Modifier and Type Field Description static CategoryATTACHMENTSA category for attachment results.static CategoryBLOGSA category for blog results.static CategoryCOMMENTSA category for comments.static CategoryCONTENTA category for page and blog results combined.static CategoryCUSTOMA category for custom content.static CategoryPAGESA category for page results.static CategoryPEOPLEA category for people results.static CategoryPERSONAL_SPACEA category for personal spaces.static CategorySPACESA category for space results.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)static CategorygetCategory(String type)Return a Category for the supplied type.StringgetName()inthashCode()StringtoString()
-
-
-
Field Detail
-
PAGES
public static final Category PAGES
A category for page results.
-
BLOGS
public static final Category BLOGS
A category for blog results.
-
CONTENT
public static final Category CONTENT
A category for page and blog results combined.
-
ATTACHMENTS
public static final Category ATTACHMENTS
A category for attachment results.
-
PEOPLE
public static final Category PEOPLE
A category for people results.
-
SPACES
public static final Category SPACES
A category for space results.
-
COMMENTS
public static final Category COMMENTS
A category for comments.
-
PERSONAL_SPACE
public static final Category PERSONAL_SPACE
A category for personal spaces.
-
CUSTOM
public static final Category CUSTOM
A category for custom content.
-
-
Constructor Detail
-
Category
public Category(String name)
-
-
Method Detail
-
getCategory
public static Category getCategory(String type)
Return a Category for the supplied type. If the type supplied matches one of the standard category types then that existing Category will be returned. Otherwise a new category will be created and returned.- Parameters:
type- must not be null- Returns:
- the matching category or a newly created one if there is no standard category for the type
-
getName
public String getName()
-
-