Enum FormData.NameNotFoundMode

    • Enum Constant Detail

      • CHECK_FRESHNESS

        public static final FormData.NameNotFoundMode CHECK_FRESHNESS
        When the FormData doesn't have an entry of a certain name, if the FormData is fresh then the value configured at the field is used instead, otherwise (it's not fresh) the value is taken from the FormData as usual, which will return null.

        The form is fresh when jcr:created property has equal value to the last modified property's value (taken from either jcr:lastModified or cq:lastModified). If either created or last modified date is not available, it is not considered as fresh.

        This mode is usually used for Authoring dialogs.

      • IGNORE_FRESHNESS

        public static final FormData.NameNotFoundMode IGNORE_FRESHNESS
        When the FormData doesn't have an entry of a certain name, then the value configured at the field is used instead.
    • Method Detail

      • values

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

        public static FormData.NameNotFoundMode 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