Enum ModuleFactoryEntryPoint.EntryPointType
- java.lang.Object
-
- java.lang.Enum<ModuleFactoryEntryPoint.EntryPointType>
-
- co.com.bancolombia.factory.entrypoints.ModuleFactoryEntryPoint.EntryPointType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ModuleFactoryEntryPoint.EntryPointType>
- Enclosing class:
- ModuleFactoryEntryPoint
public static enum ModuleFactoryEntryPoint.EntryPointType extends java.lang.Enum<ModuleFactoryEntryPoint.EntryPointType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ModuleFactoryEntryPoint.EntryPointTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ModuleFactoryEntryPoint.EntryPointType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RESTMVC
public static final ModuleFactoryEntryPoint.EntryPointType RESTMVC
-
WEBFLUX
public static final ModuleFactoryEntryPoint.EntryPointType WEBFLUX
-
GENERIC
public static final ModuleFactoryEntryPoint.EntryPointType GENERIC
-
RSOCKET
public static final ModuleFactoryEntryPoint.EntryPointType RSOCKET
-
GRAPHQL
public static final ModuleFactoryEntryPoint.EntryPointType GRAPHQL
-
ASYNCEVENTHANDLER
public static final ModuleFactoryEntryPoint.EntryPointType ASYNCEVENTHANDLER
-
MQ
public static final ModuleFactoryEntryPoint.EntryPointType MQ
-
SQS
public static final ModuleFactoryEntryPoint.EntryPointType SQS
-
-
Method Detail
-
values
public static ModuleFactoryEntryPoint.EntryPointType[] 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 (ModuleFactoryEntryPoint.EntryPointType c : ModuleFactoryEntryPoint.EntryPointType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ModuleFactoryEntryPoint.EntryPointType 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
-
-