public enum EnumsExchangeType extends Enum<EnumsExchangeType>
| 限定符和类型 | 方法和说明 |
|---|---|
abstract org.springframework.amqp.core.Binding |
binding(org.springframework.amqp.core.Queue queue,
org.springframework.amqp.core.Exchange exchange,
String routingKey) |
static EnumsExchangeType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static EnumsExchangeType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final EnumsExchangeType DIRECT
public static final EnumsExchangeType TOPIC
public static final EnumsExchangeType FANOUT
public static final EnumsExchangeType DEFAULT
public static EnumsExchangeType[] values()
for (EnumsExchangeType c : EnumsExchangeType.values()) System.out.println(c);
public static EnumsExchangeType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public abstract org.springframework.amqp.core.Binding binding(org.springframework.amqp.core.Queue queue,
org.springframework.amqp.core.Exchange exchange,
String routingKey)
Copyright © 2019. All rights reserved.