Enum ModuleFactoryDrivenAdapter.DrivenAdapterType
- java.lang.Object
-
- java.lang.Enum<ModuleFactoryDrivenAdapter.DrivenAdapterType>
-
- co.com.bancolombia.factory.adapters.ModuleFactoryDrivenAdapter.DrivenAdapterType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ModuleFactoryDrivenAdapter.DrivenAdapterType>
- Enclosing class:
- ModuleFactoryDrivenAdapter
public static enum ModuleFactoryDrivenAdapter.DrivenAdapterType extends java.lang.Enum<ModuleFactoryDrivenAdapter.DrivenAdapterType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ModuleFactoryDrivenAdapter.DrivenAdapterTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ModuleFactoryDrivenAdapter.DrivenAdapterType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JPA
public static final ModuleFactoryDrivenAdapter.DrivenAdapterType JPA
-
MONGODB
public static final ModuleFactoryDrivenAdapter.DrivenAdapterType MONGODB
-
ASYNCEVENTBUS
public static final ModuleFactoryDrivenAdapter.DrivenAdapterType ASYNCEVENTBUS
-
GENERIC
public static final ModuleFactoryDrivenAdapter.DrivenAdapterType GENERIC
-
RESTCONSUMER
public static final ModuleFactoryDrivenAdapter.DrivenAdapterType RESTCONSUMER
-
REDIS
public static final ModuleFactoryDrivenAdapter.DrivenAdapterType REDIS
-
RSOCKET
public static final ModuleFactoryDrivenAdapter.DrivenAdapterType RSOCKET
-
R2DBC
public static final ModuleFactoryDrivenAdapter.DrivenAdapterType R2DBC
-
KMS
public static final ModuleFactoryDrivenAdapter.DrivenAdapterType KMS
-
SECRETS
public static final ModuleFactoryDrivenAdapter.DrivenAdapterType SECRETS
-
S3
public static final ModuleFactoryDrivenAdapter.DrivenAdapterType S3
-
MQ
public static final ModuleFactoryDrivenAdapter.DrivenAdapterType MQ
-
KTOR
public static final ModuleFactoryDrivenAdapter.DrivenAdapterType KTOR
-
DYNAMODB
public static final ModuleFactoryDrivenAdapter.DrivenAdapterType DYNAMODB
-
BINSTASH
public static final ModuleFactoryDrivenAdapter.DrivenAdapterType BINSTASH
-
SQS
public static final ModuleFactoryDrivenAdapter.DrivenAdapterType SQS
-
-
Method Detail
-
values
public static ModuleFactoryDrivenAdapter.DrivenAdapterType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ModuleFactoryDrivenAdapter.DrivenAdapterType c : ModuleFactoryDrivenAdapter.DrivenAdapterType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ModuleFactoryDrivenAdapter.DrivenAdapterType valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-