Uses of Class
rocks.xmpp.extensions.data.model.DataForm.Field
-
Packages that use DataForm.Field Package Description rocks.xmpp.extensions.data.model Provides XML schema implementations of XEP-0004: Data Forms. -
-
Uses of DataForm.Field in rocks.xmpp.extensions.data.model
Methods in rocks.xmpp.extensions.data.model that return DataForm.Field Modifier and Type Method Description DataForm.Field
DataForm.Field.Builder. build()
Builds the field.DataForm.Field
DataForm. findField(String name)
Finds a field by its name ('ver' attribute).Methods in rocks.xmpp.extensions.data.model that return types with arguments of type DataForm.Field Modifier and Type Method Description List<DataForm.Field>
DataForm. getFields()
Gets the fields of the form.List<DataForm.Field>
DataForm.Item. getFields()
Gets the fields.List<DataForm.Field>
DataForm. getReportedFields()
Gets the reported fields, which can be understood as "table headers" describing the data to follow.Methods in rocks.xmpp.extensions.data.model with parameters of type DataForm.Field Modifier and Type Method Description int
DataForm.Field. compareTo(DataForm.Field o)
Method parameters in rocks.xmpp.extensions.data.model with type arguments of type DataForm.Field Modifier and Type Method Description T
DataForm.Builder. fields(Collection<DataForm.Field> fields)
Sets the fields.T
DataForm.Builder. reportedFields(Collection<DataForm.Field> reportedFields)
Sets the reported fields of the form.Constructor parameters in rocks.xmpp.extensions.data.model with type arguments of type DataForm.Field Constructor Description DataForm(DataForm.Type type, String title, Collection<DataForm.Field> fields, Collection<DataForm.Field> reportedFields, Collection<DataForm.Item> items, Collection<String> instructions, Collection<Page> pages)
DataForm(DataForm.Type type, Collection<DataForm.Field> fields)
Creates a data form.
-