Interface TextNodeOptions
-
public interface TextNodeOptionsDescribes 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 booleanisCalendar()Indicates whether or not this is a calendar fieldbooleanisCheckbox()Indicates this is a checkbox fieldbooleanisDatetime()Indicates whether or not this is a datetime fieldbooleanisDropdown()Indicates whether or not this is a dropdown fieldbooleanisMultiselect()Indicates whether or not this is a multiselect fieldbooleanisPlainText()Indicates this is a plain text field, i.e.booleanisRadio()Indicates whether or not this is a radio button field.booleanisWysiwyg()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:
-
-