public enum ParticipantBandKind extends Enum<ParticipantBandKind>
Enum Constant and Description |
---|
bottom_initiating |
bottom_non_initiating |
middle_initiating |
middle_non_initiating |
top_initiating |
top_non_initiating |
Modifier and Type | Method and Description |
---|---|
static ParticipantBandKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParticipantBandKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParticipantBandKind top_initiating
public static final ParticipantBandKind middle_initiating
public static final ParticipantBandKind bottom_initiating
public static final ParticipantBandKind top_non_initiating
public static final ParticipantBandKind middle_non_initiating
public static final ParticipantBandKind bottom_non_initiating
public static ParticipantBandKind[] values()
for (ParticipantBandKind c : ParticipantBandKind.values()) System.out.println(c);
public static ParticipantBandKind 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 © 2015. All rights reserved.