public enum JoinStatus extends Enum<JoinStatus>
| Enum Constant and Description | 
|---|
JOINED  | 
MARKED_FOR_JOINED  | 
NOT_JOINED  | 
| Modifier and Type | Method and Description | 
|---|---|
static JoinStatus | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static JoinStatus[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final JoinStatus NOT_JOINED
public static final JoinStatus MARKED_FOR_JOINED
public static final JoinStatus JOINED
public static JoinStatus[] values()
for (JoinStatus c : JoinStatus.values()) System.out.println(c);
public static JoinStatus 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 © 2001-2015 Red Hat, Inc. All Rights Reserved.