public enum LinkArrow extends Enum<LinkArrow>
| Enum Constant and Description |
|---|
BACKWARD |
DIRECT_NORMAL |
NONE |
| Modifier and Type | Method and Description |
|---|---|
LinkArrow |
reverse() |
static LinkArrow |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinkArrow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinkArrow NONE
public static final LinkArrow DIRECT_NORMAL
public static final LinkArrow BACKWARD
public static LinkArrow[] values()
for (LinkArrow c : LinkArrow.values()) System.out.println(c);
public static LinkArrow 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 nullpublic LinkArrow reverse()
Copyright © 2017. All rights reserved.