Enum InboundRequestProcessorFactoryImpl.Protocols
- java.lang.Object
-
- java.lang.Enum<InboundRequestProcessorFactoryImpl.Protocols>
-
- org.wso2.carbon.inbound.endpoint.inboundfactory.InboundRequestProcessorFactoryImpl.Protocols
-
- All Implemented Interfaces:
Serializable
,Comparable<InboundRequestProcessorFactoryImpl.Protocols>
- Enclosing class:
- InboundRequestProcessorFactoryImpl
public static enum InboundRequestProcessorFactoryImpl.Protocols extends Enum<InboundRequestProcessorFactoryImpl.Protocols>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InboundRequestProcessorFactoryImpl.Protocols
valueOf(String name)
Returns the enum constant of this type with the specified name.static InboundRequestProcessorFactoryImpl.Protocols[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
jms
public static final InboundRequestProcessorFactoryImpl.Protocols jms
-
file
public static final InboundRequestProcessorFactoryImpl.Protocols file
-
http
public static final InboundRequestProcessorFactoryImpl.Protocols http
-
https
public static final InboundRequestProcessorFactoryImpl.Protocols https
-
hl7
public static final InboundRequestProcessorFactoryImpl.Protocols hl7
-
kafka
public static final InboundRequestProcessorFactoryImpl.Protocols kafka
-
mqtt
public static final InboundRequestProcessorFactoryImpl.Protocols mqtt
-
rabbitmq
public static final InboundRequestProcessorFactoryImpl.Protocols rabbitmq
-
ws
public static final InboundRequestProcessorFactoryImpl.Protocols ws
-
wss
public static final InboundRequestProcessorFactoryImpl.Protocols wss
-
nats
public static final InboundRequestProcessorFactoryImpl.Protocols nats
-
httpws
public static final InboundRequestProcessorFactoryImpl.Protocols httpws
-
httpswss
public static final InboundRequestProcessorFactoryImpl.Protocols httpswss
-
-
Method Detail
-
values
public static InboundRequestProcessorFactoryImpl.Protocols[] 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 (InboundRequestProcessorFactoryImpl.Protocols c : InboundRequestProcessorFactoryImpl.Protocols.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InboundRequestProcessorFactoryImpl.Protocols valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-