Enum I_CmsXmlContentValue.SearchContentType

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      CONTENT
      Merge the extracted content of the resource linked by the element into the content field.
      FALSE
      Do not merge the value of the field into the content field.
      TRUE
      Merge the value of the field into the content field.
    • Method Detail

      • values

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

        public static I_CmsXmlContentValue.SearchContentType valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • fromString

        public static I_CmsXmlContentValue.SearchContentType fromString​(java.lang.String type)
        Converts the String into a SearchContentType. Returns null if conversion is not possible.
        Parameters:
        type - the search content type as String.
        Returns:
        the search content type specified by the provided String, or null if the String did not specify any search content type.