public enum EntityType extends Enum<EntityType>
Enum Constant and Description |
---|
ATTACHMENT
Represents an Attachment Entity.
|
BLOCK
Represents a structured part of the content of a document or an object property.
|
CLASS_PROPERTY
Represents a class property entity.
|
DOCUMENT
Represents a Document Entity.
|
OBJECT
Represents an Object Entity.
|
OBJECT_PROPERTY
Represents an Object Property Entity.
|
PAGE
Represents a Page Entity.
|
PAGE_ATTACHMENT
Represents an Attachment Entity in a page.
|
PAGE_CLASS_PROPERTY
Represents a class property entity in a page.
|
PAGE_OBJECT
Represents an Object Entity in a page.
|
PAGE_OBJECT_PROPERTY
Represents an Object Property Entity in a page.
|
SPACE
Represents a Space Entity.
|
WIKI
Represents a Wiki Entity.
|
Modifier and Type | Method and Description |
---|---|
List<EntityType> |
getAllowedParents() |
String |
getLowerCase() |
boolean |
isAllowedAncestor(EntityType type) |
static EntityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityType WIKI
public static final EntityType SPACE
public static final EntityType DOCUMENT
public static final EntityType ATTACHMENT
public static final EntityType OBJECT
public static final EntityType OBJECT_PROPERTY
public static final EntityType CLASS_PROPERTY
public static final EntityType BLOCK
public static final EntityType PAGE
public static final EntityType PAGE_ATTACHMENT
public static final EntityType PAGE_OBJECT
public static final EntityType PAGE_OBJECT_PROPERTY
public static final EntityType PAGE_CLASS_PROPERTY
public static EntityType[] values()
for (EntityType c : EntityType.values()) System.out.println(c);
public static EntityType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getLowerCase()
public List<EntityType> getAllowedParents()
public boolean isAllowedAncestor(EntityType type)
type
- the typeCopyright © 2004–2021 XWiki. All rights reserved.