public enum Linking extends Enum<Linking>
<instance>/@linking
.Enum Constant and Description |
---|
NONE |
NORMAL |
SOURCE_ONLY |
TARGET_ONLY |
Modifier and Type | Method and Description |
---|---|
static Linking |
fromString(String spec) |
String |
toString() |
static Linking |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Linking[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Linking TARGET_ONLY
public static final Linking SOURCE_ONLY
public static final Linking NORMAL
public static final Linking NONE
public static Linking[] values()
for (Linking c : Linking.values()) System.out.println(c);
public static Linking 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