public enum AddressField extends Enum<AddressField>
| Enum Constant and Description |
|---|
ID |
NAME |
PRODUCER_ID |
QUEUE_COUNT |
ROUTING_TYPES |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static AddressField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AddressField |
valueOfName(String name) |
static AddressField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddressField ID
public static final AddressField NAME
public static final AddressField ROUTING_TYPES
public static final AddressField PRODUCER_ID
public static final AddressField QUEUE_COUNT
public static AddressField[] values()
for (AddressField c : AddressField.values()) System.out.println(c);
public static AddressField 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 getName()
public static AddressField valueOfName(String name)
Copyright © 2022 JBoss by Red Hat. All rights reserved.