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 instancestatic FieldDefinitionOrderValue
deepCopy
(FieldDefinitionOrderValue template) factory method to create a deep copy of FieldDefinitionOrderValue@NotNull @Valid LocalizedString
getLabel()
Descriptive label of the field.@NotNull String
getName()
Name of the FieldDefinition.static FieldDefinitionOrderValue
of()
factory methodstatic FieldDefinitionOrderValue
of
(FieldDefinitionOrderValue template) factory method to create a shallow copy FieldDefinitionOrderValuevoid
setLabel
(LocalizedString label) Descriptive label of the field.void
Name of the FieldDefinition.static com.fasterxml.jackson.core.type.TypeReference<FieldDefinitionOrderValue>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor 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
-
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
-