Interface TextNodeOptions
-
public interface TextNodeOptions
Describes the various options available on a structured data text node. Note only one of these will ever be true at any time.- Since:
- 4.7
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isCalendar()
Indicates whether or not this is a calendar fieldboolean
isCheckbox()
Indicates this is a checkbox fieldboolean
isDatetime()
Indicates whether or not this is a datetime fieldboolean
isDropdown()
Indicates whether or not this is a dropdown fieldboolean
isMultiselect()
Indicates whether or not this is a multiselect fieldboolean
isPlainText()
Indicates this is a plain text field, i.e.boolean
isRadio()
Indicates whether or not this is a radio button field.boolean
isWysiwyg()
Indicates whether or not this is a wysiwyg field
-
-
-
Method Detail
-
isPlainText
boolean isPlainText()
Indicates this is a plain text field, i.e. a text box or text area- Returns:
-
isCheckbox
boolean isCheckbox()
Indicates this is a checkbox field- Returns:
-
isRadio
boolean isRadio()
Indicates whether or not this is a radio button field.- Returns:
-
isCalendar
boolean isCalendar()
Indicates whether or not this is a calendar field- Returns:
-
isDatetime
boolean isDatetime()
Indicates whether or not this is a datetime field- Returns:
-
isDropdown
boolean isDropdown()
Indicates whether or not this is a dropdown field- Returns:
-
isMultiselect
boolean isMultiselect()
Indicates whether or not this is a multiselect field- Returns:
-
isWysiwyg
boolean isWysiwyg()
Indicates whether or not this is a wysiwyg field- Returns:
-
-