类 ConditionMessage.ItemsBuilder
java.lang.Object
org.springframework.boot.autoconfigure.condition.ConditionMessage.ItemsBuilder
- 封闭类:
ConditionMessage
Builder used to create an
ConditionMessage.ItemsBuilder
for a condition.-
方法概要
修饰符和类型方法说明atAll()
Used when no items are available.Indicate the items.items
(Collection<?> items) Indicate the items.items
(ConditionMessage.Style style, Object... items) Indicate the items.items
(ConditionMessage.Style style, Collection<?> items) Indicate the items with aConditionMessage.Style
.
-
方法详细资料
-
atAll
Used when no items are available. For exampledidNotFind("any beans").atAll()
results in the message "did not find any beans".- 返回:
- a built
ConditionMessage
-
items
Indicate the items. For exampledidNotFind("bean", "beans").items("x", "y")
results in the message "did not find beans x, y".- 参数:
items
- the items (may benull
)- 返回:
- a built
ConditionMessage
-
items
Indicate the items. For exampledidNotFind("bean", "beans").items("x", "y")
results in the message "did not find beans x, y".- 参数:
style
- the render styleitems
- the items (may benull
)- 返回:
- a built
ConditionMessage
-
items
Indicate the items. For exampledidNotFind("bean", "beans").items(Collections.singleton("x")
results in the message "did not find bean x".- 参数:
items
- the source of the items (may benull
)- 返回:
- a built
ConditionMessage
-
items
Indicate the items with aConditionMessage.Style
. For exampledidNotFind("bean", "beans").items(Style.QUOTE, Collections.singleton("x")
results in the message "did not find bean 'x'".- 参数:
style
- the render styleitems
- the source of the items (may benull
)- 返回:
- a built
ConditionMessage
-