Enum Transformation.Action

    • Enum Constant Detail

      • INSERT_CHILD

        public static final Transformation.Action INSERT_CHILD
        Add passed XML as child of the found node.
      • INSERT_TEXT

        public static final Transformation.Action INSERT_TEXT
        Add content of the text file as child-text of the found node.
        Since:
        11.4RC1
      • INSERT_ATTACHMENT_CONTENT

        public static final Transformation.Action INSERT_ATTACHMENT_CONTENT
        Add content of the binary base64-encoded as child of the found node.
        Since:
        11.4RC1
    • Method Detail

      • values

        public static Transformation.Action[] 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 (Transformation.Action c : Transformation.Action.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Transformation.Action 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