public enum BusWiringType extends Enum<BusWiringType>
Enum Constant and Description |
---|
CONSTRUCTOR
Wire the bus into the first indexed constructor argument of the target
bean.
|
PROPERTY
Wire the bus into the
bus property of the target bean. |
Modifier and Type | Method and Description |
---|---|
static BusWiringType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BusWiringType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BusWiringType PROPERTY
bus
property of the target bean.public static final BusWiringType CONSTRUCTOR
public static BusWiringType[] values()
for (BusWiringType c : BusWiringType.values()) System.out.println(c);
public static BusWiringType 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 nullCopyright © 2021 JBoss by Red Hat. All rights reserved.