Interface FieldDefinitionOrderValue
public interface FieldDefinitionOrderValue
FieldDefinitionOrderValue
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
FieldDefinitionOrderValue fieldDefinitionOrderValue = FieldDefinitionOrderValue.builder()
.name("{name}")
.label(labelBuilder -> labelBuilder)
.build()
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for FieldDefinitionOrderValuebuilder(FieldDefinitionOrderValue template) create builder for FieldDefinitionOrderValue instancecopyDeep()static FieldDefinitionOrderValuedeepCopy(FieldDefinitionOrderValue template) factory method to create a deep copy of FieldDefinitionOrderValue@NotNull @Valid LocalizedStringgetLabel()Descriptive label of the field.@NotNull StringgetName()Name of the FieldDefinition.static FieldDefinitionOrderValueof()factory methodstatic FieldDefinitionOrderValueof(FieldDefinitionOrderValue template) factory method to create a shallow copy FieldDefinitionOrderValuevoidsetLabel(LocalizedString label) Descriptive label of the field.voidName of the FieldDefinition.static com.fasterxml.jackson.core.type.TypeReference<FieldDefinitionOrderValue>gives a TypeReference for usage with Jackson DataBinddefault <T> Taccessor map function
-
Method Details
-
getName
Name of the FieldDefinition.
- Returns:
- name
-
getLabel
Descriptive label of the field.
- Returns:
- label
-
setName
Name of the FieldDefinition.
- Parameters:
name- value to be set
-
setLabel
Descriptive label of the field.
- Parameters:
label- value to be set
-
of
factory method- Returns:
- instance of FieldDefinitionOrderValue
-
of
factory method to create a shallow copy FieldDefinitionOrderValue- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
FieldDefinitionOrderValue copyDeep() -
deepCopy
factory method to create a deep copy of FieldDefinitionOrderValue- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for FieldDefinitionOrderValue- Returns:
- builder
-
builder
create builder for FieldDefinitionOrderValue instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withFieldDefinitionOrderValue
accessor map function- Type Parameters:
T- mapped type- Parameters:
helper- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-