public static enum Affiliation.Type extends Enum<Affiliation.Type>
| Enum Constant and Description |
|---|
member |
none |
outcast |
owner |
publisher |
| Modifier and Type | Method and Description |
|---|---|
static Affiliation.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Affiliation.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Affiliation.Type member
public static final Affiliation.Type none
public static final Affiliation.Type outcast
public static final Affiliation.Type owner
public static final Affiliation.Type publisher
public static Affiliation.Type[] values()
for (Affiliation.Type c : Affiliation.Type.values()) System.out.println(c);
public static Affiliation.Type 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 null