public enum ExternalLinkDirection extends java.lang.Enum<ExternalLinkDirection>
ExternalLink
direction property.Enum Constant and Description |
---|
INWARDS
For links starting on an external item and ending on a requirement
|
OUTWARDS
For links starting on a requirement and ending on an external item
|
Modifier and Type | Method and Description |
---|---|
static ExternalLinkDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExternalLinkDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExternalLinkDirection INWARDS
public static final ExternalLinkDirection OUTWARDS
public static ExternalLinkDirection[] values()
for (ExternalLinkDirection c : ExternalLinkDirection.values()) System.out.println(c);
public static ExternalLinkDirection valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null