Package com.composum.sling.nodes.servlet
Enum SourceModel.RenderingType
- java.lang.Object
-
- java.lang.Enum<SourceModel.RenderingType>
-
- com.composum.sling.nodes.servlet.SourceModel.RenderingType
-
- All Implemented Interfaces:
Serializable
,Comparable<SourceModel.RenderingType>
- Enclosing class:
- SourceModel
protected static enum SourceModel.RenderingType extends Enum<SourceModel.RenderingType>
How the node is rendered in a zip.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BINARYFILE
A file named like the node which just contains the binary content of the resource - typically for a nt:file/nt:resource combination, or a standalone nt:resource.EMBEDDED
FOLDER
A folder with a .content.xml (the .content.xml might be missing if the node is of type nt:folder without any additional attributes).XMLFILE
A single XML file named like the node - e.g.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SourceModel.RenderingType
valueOf(String name)
Returns the enum constant of this type with the specified name.static SourceModel.RenderingType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
XMLFILE
public static final SourceModel.RenderingType XMLFILE
A single XML file named like the node - e.g. en.xml for mix:language.
-
FOLDER
public static final SourceModel.RenderingType FOLDER
A folder with a .content.xml (the .content.xml might be missing if the node is of type nt:folder without any additional attributes).
-
BINARYFILE
public static final SourceModel.RenderingType BINARYFILE
A file named like the node which just contains the binary content of the resource - typically for a nt:file/nt:resource combination, or a standalone nt:resource. If there are additional attributes, they are written into a {nodename}.dir/.content.xml.
-
EMBEDDED
public static final SourceModel.RenderingType EMBEDDED
-
-
Method Detail
-
values
public static SourceModel.RenderingType[] 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 (SourceModel.RenderingType c : SourceModel.RenderingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SourceModel.RenderingType 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
-
-