Enum Reference
- java.lang.Object
-
- java.lang.Enum<Reference>
-
- com.gentics.contentnode.rest.model.Reference
-
- All Implemented Interfaces:
Serializable
,Comparable<Reference>
public enum Reference extends Enum<Reference>
Enumeration of references to mark, which references shall be filled when returning objects
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTENT_TAGS
DESCRIPTION
DISINHERITED_CHANNELS
FOLDER
GROUPS
LANGUAGEVARIANTS
OBJECT_TAGS
OBJECT_TAGS_VISIBLE
PAGEVARIANTS
PRIVILEGEMAP
PRIVILEGES
TAG_EDIT_DATA
TAGS
TEMPLATE
TEMPLATE_SOURCE
TEMPLATE_TAGS
TRANSLATIONSTATUS
USER_LOGIN
VERSIONS
WORKFLOW
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Reference
valueOf(String name)
Returns the enum constant of this type with the specified name.static Reference[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TEMPLATE
public static final Reference TEMPLATE
-
FOLDER
public static final Reference FOLDER
-
LANGUAGEVARIANTS
public static final Reference LANGUAGEVARIANTS
-
WORKFLOW
public static final Reference WORKFLOW
-
TAGS
public static final Reference TAGS
-
GROUPS
public static final Reference GROUPS
-
PAGEVARIANTS
public static final Reference PAGEVARIANTS
-
TRANSLATIONSTATUS
public static final Reference TRANSLATIONSTATUS
-
VERSIONS
public static final Reference VERSIONS
-
PRIVILEGES
public static final Reference PRIVILEGES
-
PRIVILEGEMAP
public static final Reference PRIVILEGEMAP
-
CONTENT_TAGS
public static final Reference CONTENT_TAGS
-
OBJECT_TAGS
public static final Reference OBJECT_TAGS
-
OBJECT_TAGS_VISIBLE
public static final Reference OBJECT_TAGS_VISIBLE
-
TEMPLATE_TAGS
public static final Reference TEMPLATE_TAGS
-
TEMPLATE_SOURCE
public static final Reference TEMPLATE_SOURCE
-
DESCRIPTION
public static final Reference DESCRIPTION
-
USER_LOGIN
public static final Reference USER_LOGIN
-
DISINHERITED_CHANNELS
public static final Reference DISINHERITED_CHANNELS
-
TAG_EDIT_DATA
public static final Reference TAG_EDIT_DATA
-
-
Method Detail
-
values
public static Reference[] 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 (Reference c : Reference.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Reference valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-