public enum CommunicationPattern extends Enum<CommunicationPattern>
| Enum Constant and Description |
|---|
FireAndForget |
RequestAsynchronousResponse |
RequestForStream |
RequestForSubscription |
RequestResponse |
| Modifier and Type | Method and Description |
|---|---|
String |
description() |
static CommunicationPattern |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommunicationPattern[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommunicationPattern FireAndForget
public static final CommunicationPattern RequestResponse
public static final CommunicationPattern RequestAsynchronousResponse
public static final CommunicationPattern RequestForStream
public static final CommunicationPattern RequestForSubscription
public static CommunicationPattern[] values()
for (CommunicationPattern c : CommunicationPattern.values()) System.out.println(c);
public static CommunicationPattern valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String description()
Copyright © 2022. All rights reserved.