public enum BindingType extends Enum<BindingType>
Enum Constant and Description |
---|
DIVERT |
LOCAL_QUEUE |
REMOTE_QUEUE |
Modifier and Type | Field and Description |
---|---|
static int |
DIVERT_INDEX |
static int |
LOCAL_QUEUE_INDEX |
static int |
REMOTE_QUEUE_INDEX |
Modifier and Type | Method and Description |
---|---|
int |
toInt() |
static BindingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BindingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindingType LOCAL_QUEUE
public static final BindingType REMOTE_QUEUE
public static final BindingType DIVERT
public static final int LOCAL_QUEUE_INDEX
public static final int REMOTE_QUEUE_INDEX
public static final int DIVERT_INDEX
public static BindingType[] values()
for (BindingType c : BindingType.values()) System.out.println(c);
public static BindingType 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 int toInt()
Copyright © 2019 JBoss by Red Hat. All rights reserved.