Package org.springframework.amqp.core
Class Declarables
- java.lang.Object
-
- org.springframework.amqp.core.Declarables
-
public class Declarables extends Object
A collection ofDeclarable
objects; used to declare multiple objects on the broker using a single bean declaration for the collection.- Since:
- 2.1
- Author:
- Gary Russell, Björn Michael
-
-
Constructor Summary
Constructors Constructor Description Declarables(Collection<? extends Declarable> declarables)
Declarables(Declarable... declarables)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<Declarable>
getDeclarables()
<T> List<T>
getDeclarablesByType(Class<T> type)
Return the elements that are instances of the provided class.String
toString()
-
-
-
Constructor Detail
-
Declarables
public Declarables(Declarable... declarables)
-
Declarables
public Declarables(Collection<? extends Declarable> declarables)
-
-
Method Detail
-
getDeclarables
public Collection<Declarable> getDeclarables()
-
getDeclarablesByType
public <T> List<T> getDeclarablesByType(Class<T> type)
Return the elements that are instances of the provided class.- Type Parameters:
T
- The type.- Parameters:
type
- the type's class.- Returns:
- the filtered list.
- Since:
- 2.2
-
-