public static enum Association.State extends Enum<Association.State>
Enum Constant and Description |
---|
BROKEN |
CHANGED |
DISCOVERED |
PENDING |
Modifier and Type | Method and Description |
---|---|
static Association.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Association.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Association.State PENDING
public static final Association.State DISCOVERED
public static final Association.State CHANGED
public static final Association.State BROKEN
public static Association.State[] values()
for (Association.State c : Association.State.values()) System.out.println(c);
public static Association.State 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 © 2007–2018 Rio Project. All rights reserved.