Interface ImageSearchConfigRequest
public interface ImageSearchConfigRequest
ImageSearchConfigRequest
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
ImageSearchConfigRequest imageSearchConfigRequest = ImageSearchConfigRequest.builder()
.plusActions(actionsBuilder -> actionsBuilder)
.build()
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ImageSearchConfigRequestbuilder
(ImageSearchConfigRequest template) create builder for ImageSearchConfigRequest instancestatic ImageSearchConfigRequest
deepCopy
(ImageSearchConfigRequest template) factory method to create a deep copy of ImageSearchConfigRequest@NotNull @Valid List<ImageSearchConfigUpdateAction>
The list of update actions to be performed on the project.static ImageSearchConfigRequest
of()
factory methodstatic ImageSearchConfigRequest
of
(ImageSearchConfigRequest template) factory method to create a shallow copy ImageSearchConfigRequestvoid
setActions
(ImageSearchConfigUpdateAction... actions) The list of update actions to be performed on the project.void
setActions
(List<ImageSearchConfigUpdateAction> actions) The list of update actions to be performed on the project.static com.fasterxml.jackson.core.type.TypeReference<ImageSearchConfigRequest>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map function
-
Method Details
-
getActions
The list of update actions to be performed on the project.
- Returns:
- actions
-
setActions
The list of update actions to be performed on the project.
- Parameters:
actions
- values to be set
-
setActions
The list of update actions to be performed on the project.
- Parameters:
actions
- values to be set
-
of
factory method- Returns:
- instance of ImageSearchConfigRequest
-
of
factory method to create a shallow copy ImageSearchConfigRequest- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of ImageSearchConfigRequest- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ImageSearchConfigRequest- Returns:
- builder
-
builder
create builder for ImageSearchConfigRequest instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withImageSearchConfigRequest
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
-