Enum SourceModel.RenderingType

    • 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.
    • 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 name
        NullPointerException - if the argument is null