Package info.bitrich.xchangestream.core
Enum StreamingExchangeFactory
- All Implemented Interfaces:
Serializable
,Comparable<StreamingExchangeFactory>
,java.lang.constant.Constable
Factory to provide the following to
StreamingExchange
:
- Manages the creation of specific Exchange implementations using runtime dependencies
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptioncreateExchange
(Class<? extends StreamingExchange> exchangeClass) Create an Exchange object with default ExchangeSpecificationcreateExchange
(String exchangeClassName) Create an Exchange object with default ExchangeSpecificationcreateExchange
(ExchangeSpecification exchangeSpecification) createExchangeWithoutSpecification
(Class<? extends StreamingExchange> exchangeClass) createExchangeWithoutSpecification
(String exchangeClassName) Create an Exchange object without default ExchangeSpecificationstatic StreamingExchangeFactory
Returns the enum constant of this type with the specified name.static StreamingExchangeFactory[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
INSTANCE
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
createExchangeWithoutSpecification
Create an Exchange object without default ExchangeSpecificationThe factory is parameterised with the name of the exchange implementation class. This must be a class extending
Exchange
.- Parameters:
exchangeClassName
- the fully-qualified class name of the exchange- Returns:
- a new exchange instance configured with the default
ExchangeSpecification
-
createExchangeWithoutSpecification
public StreamingExchange createExchangeWithoutSpecification(Class<? extends StreamingExchange> exchangeClass) -
createExchange
Create an Exchange object with default ExchangeSpecificationThe factory is parameterised with the name of the exchange implementation class. This must be a class extending
Exchange
.- Parameters:
exchangeClassName
- the fully-qualified class name of the exchange- Returns:
- a new exchange instance configured with the default
ExchangeSpecification
-
createExchange
Create an Exchange object with default ExchangeSpecificationThe factory is parameterised with the name of the exchange implementation class. This must be a class extending
Exchange
.- Parameters:
exchangeClass
- the exchange to create- Returns:
- a new exchange instance configured with the default
ExchangeSpecification
-
createExchange
-