Modifier and Type | Interface and Description |
---|---|
interface |
Field<F extends Field<F>>
Represents the metadata for a field component.
|
Modifier and Type | Method and Description |
---|---|
default Field<?> |
Form.getField(String name) |
Modifier and Type | Method and Description |
---|---|
default Optional<Field<?>> |
Form.findField(String name) |
Modifier and Type | Method and Description |
---|---|
default F |
Form.addField(Field<?> field) |
default F |
Form.addField(String name,
Field<?> field) |
Modifier and Type | Method and Description |
---|---|
default F |
Form.addFields(Collection<Field<?>> fields) |
default F |
Form.field(String name,
UnaryOperator<Field<?>> fn)
Selects or creates a field with the given name and provides it as an argument to the function
for further customization.
|
Modifier and Type | Method and Description |
---|---|
default Field<?> |
ResidentMapCreateAction.getEntryKeyField()
Retrieves the entry key field.
|
default Field<?> |
FormAction.getField(String name) |
static Field<?> |
OrderableModalFormAction.FieldDefaults.moveToFront() |
Modifier and Type | Method and Description |
---|---|
default Optional<Field<?>> |
ResidentMapCreateAction.findEntryKeyField()
Finds the entry key field.
|
default Optional<Field<?>> |
FormAction.findField(String name) |
Modifier and Type | Method and Description |
---|---|
default A |
ResidentMapCreateAction.addEntryKeyField(Field<?> entryKeyField)
Adds an entry key field to the action.
|
default A |
FormAction.addField(Field<?> field) |
default A |
FormAction.addField(String name,
Field<?> field) |
default A |
OrderableModalFormAction.addMoveToFront(Field<?> moveToFront)
Adds the
OrderableModalFormAction.FieldNames.MOVE_TO_FRONT field. |
default A |
ExportGridAction.addNameField(Field<?> field)
Adds the field for the export name into a modal dialog form.
|
default A |
ImportGridAction.addNameField(Field<?> field)
Adds the field for the import name into a modal dialog form.
|
Modifier and Type | Method and Description |
---|---|
default A |
ResidentMapCreateAction.entryKeyField(UnaryOperator<Field<?>> fn)
Selects the entry key field for this action for further customization.
|
default A |
FormAction.field(String name,
UnaryOperator<Field<?>> fn)
Selects or creates a field with the given name and provides it as an argument to the function
for further customization.
|
default A |
OrderableModalFormAction.moveToFront(UnaryOperator<Field<?>> fn)
Provides the
OrderableModalFormAction.FieldNames.MOVE_TO_FRONT Field within this action's form for
configuration. |
default A |
ImportGridAction.nameField(String importType,
UnaryOperator<Field<?>> fn)
Adds the field for the import name into a modal dialog form.
|
default A |
ExportGridAction.nameField(UnaryOperator<Field<?>> fn)
Adds the field for the export name into a modal dialog form.
|
Modifier and Type | Method and Description |
---|---|
default Field<?> |
QueryBuilderFilterAction.getField(String name) |
Modifier and Type | Method and Description |
---|---|
default Optional<Field<?>> |
QueryBuilderFilterAction.findField(String name) |
Modifier and Type | Method and Description |
---|---|
default A |
QueryBuilderFilterAction.addField(Field<?> field) |
default A |
QueryBuilderFilterAction.addField(String name,
Field<?> field) |
Modifier and Type | Method and Description |
---|---|
default A |
QueryBuilderFilterAction.addFields(Collection<Field<?>> fields) |
default A |
QueryBuilderFilterAction.field(String name,
UnaryOperator<Field<?>> fn)
Selects or creates a field with the given name and provides it as an argument to the function
for further customization.
|
Modifier and Type | Interface and Description |
---|---|
interface |
CustomAttributesGridField<F extends CustomAttributesGridField<F>> |
interface |
DateField<F extends DateField<F>>
Represents the metadata for a date picker field.
|
interface |
DerivedSelectField<F extends DerivedSelectField<F>>
Represents the metadata for a
FieldTypes.DERIVED_ENUM field component that is built as a
derived version of a SelectField . |
interface |
DerivedUrlField<F extends DerivedUrlField<F>>
Represents the metadata for a
FieldTypes.DERIVED_URL field component. |
interface |
DynamicField<F extends DynamicField<F>>
Represents the metadata for a
FieldTypes.DYNAMIC field. |
interface |
FieldArrayBlockField<F extends FieldArrayBlockField<F>>
Represents the metadata for a
FieldTypes.FIELD_ARRAY_BLOCK field. |
interface |
FieldArrayField<F extends FieldArrayField<F>>
Represents the metadata for an array of fields.
|
interface |
FieldArrayGridField<F extends FieldArrayGridField<F>>
Represents the metadata for a
FieldTypes.FIELD_ARRAY_GRID field. |
interface |
FileInputField<F extends FileInputField<F>>
The field that is used to select the file.
|
interface |
LookupField<F extends LookupField<F>>
Represents the metadata for a
FieldTypes.LOOKUP field. |
interface |
MoneyField<F extends MoneyField<F>>
Represents the metadata for a
FieldTypes.MONEY field component. |
interface |
PhoneField<F extends PhoneField<F>>
Represents the metadata for a
FieldTypes.PHONE field. |
interface |
QueryBuilderField<F extends QueryBuilderField<F>> |
interface |
ResidentGridField<F extends ResidentGridField<F>>
Represents the metadata for a resident grid field component.
|
interface |
ResidentMapField<F extends ResidentMapField<F>> |
interface |
RuleBuilderField<F extends RuleBuilderField<F>> |
interface |
SelectField<F extends SelectField<F>>
Represents the metadata for a select field within a form.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractField<F extends AbstractField<F>>
The abstract field component specification.
|
class |
DefaultCustomAttributesGridField |
class |
DefaultDateField
The default implementation for
DateField . |
class |
DefaultDerivedSelectField |
class |
DefaultDerivedUrlField |
class |
DefaultDynamicField |
class |
DefaultField |
class |
DefaultFieldArrayBlockField |
class |
DefaultFieldArrayGridField |
class |
DefaultFileInputField
The default implementation for
FileInputField . |
class |
DefaultLookupField |
class |
DefaultMoneyField |
class |
DefaultPhoneField |
class |
DefaultQueryBuilderField |
class |
DefaultResidentGridField |
class |
DefaultResidentMapField |
class |
DefaultRuleBuilderField |
class |
DefaultSelectField |
Modifier and Type | Method and Description |
---|---|
default Field<?> |
RuleBuilderField.getField(String name)
Gets a field with the specified name.
|
default Field<?> |
FieldArrayField.getField(String name) |
default Field<?> |
QueryBuilderField.getField(String name)
Gets a field with the specified name.
|
Modifier and Type | Method and Description |
---|---|
default Optional<Field<?>> |
RuleBuilderField.findField(String name)
Finds a field with the specified name.
|
default Optional<Field<?>> |
FieldArrayField.findField(String name) |
default Optional<Field<?>> |
QueryBuilderField.findField(String name)
Finds a field with the specified name.
|
Modifier and Type | Method and Description |
---|---|
default F |
RuleBuilderField.addField(Field<?> field)
Add a field as a child to the current field
Field . |
default F |
FieldArrayField.addField(Field<?> field) |
default F |
QueryBuilderField.addField(Field<?> field)
Add a field as a child to the current field
Field . |
default F |
RuleBuilderField.addField(String name,
Field<?> field)
Add a field as a child to the current field with the provided name and
Field . |
default F |
FieldArrayField.addField(String name,
Field<?> field) |
default F |
QueryBuilderField.addField(String name,
Field<?> field)
Add a field as a child to the current field with the provided name and
Field . |
Modifier and Type | Method and Description |
---|---|
default F |
RuleBuilderField.addFields(Collection<Field<?>> fields)
Add a collection of fields as children to the current field.
|
default F |
FieldArrayField.addFields(Collection<Field<?>> fields) |
default F |
QueryBuilderField.addFields(Collection<Field<?>> fields)
Add a collection of fields as children to the current field.
|
default F |
DynamicField.configureFields(UnaryOperator<List<Field<?>>> fn)
Configure the list of fields this component will match against in deciding which field to
render.
|
default F |
QueryBuilderField.field(String name,
UnaryOperator<Field<?>> fn)
Selects or creates a field with the given name and provides it as an argument to the function
for further customization.
|
Constructor and Description |
---|
AbstractField(Field<?> component) |
DefaultField(Field<?> component) |
Copyright © 2021. All rights reserved.