public static interface PatchFilterGroup.Builder extends CopyableBuilder<PatchFilterGroup.Builder,PatchFilterGroup>
Modifier and Type | Method and Description |
---|---|
PatchFilterGroup.Builder |
patchFilters(Collection<PatchFilter> patchFilters)
The set of patch filters that make up the group.
|
PatchFilterGroup.Builder |
patchFilters(Consumer<PatchFilter.Builder>... patchFilters)
The set of patch filters that make up the group.
|
PatchFilterGroup.Builder |
patchFilters(PatchFilter... patchFilters)
The set of patch filters that make up the group.
|
copy
apply, build
PatchFilterGroup.Builder patchFilters(Collection<PatchFilter> patchFilters)
The set of patch filters that make up the group.
patchFilters
- The set of patch filters that make up the group.PatchFilterGroup.Builder patchFilters(PatchFilter... patchFilters)
The set of patch filters that make up the group.
patchFilters
- The set of patch filters that make up the group.PatchFilterGroup.Builder patchFilters(Consumer<PatchFilter.Builder>... patchFilters)
The set of patch filters that make up the group.
This is a convenience that creates an instance of theList.Builder
avoiding the need to
create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and its
result is passed to #patchFilters(List)
.patchFilters
- a consumer that will call methods on List.Builder
#patchFilters(List)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.