Enum FormData.NameNotFoundMode

java.lang.Object
java.lang.Enum<FormData.NameNotFoundMode>
com.adobe.granite.ui.components.FormData.NameNotFoundMode
All Implemented Interfaces:
Serializable, Comparable<FormData.NameNotFoundMode>, java.lang.constant.Constable
Enclosing class:
FormData

public static enum FormData.NameNotFoundMode extends Enum<FormData.NameNotFoundMode>
The mode on how to handle the scenario when the FormData doesn't have an entry of a certain name.
  • Enum Constant Details

    • 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 Details

    • values

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