public enum ArrowShape extends Enum<ArrowShape>
| Enum Constant and Description |
|---|
box |
crow |
diamond |
dot |
ediamond |
empty |
halfopen |
inv |
invdot |
invempty |
invodot |
none |
normal |
obox |
odiamond |
odot |
open |
tee |
vee |
| Modifier and Type | Method and Description |
|---|---|
static ArrowShape |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArrowShape[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArrowShape none
public static final ArrowShape normal
public static final ArrowShape empty
public static final ArrowShape dot
public static final ArrowShape odot
public static final ArrowShape diamond
public static final ArrowShape ediamond
public static final ArrowShape box
public static final ArrowShape open
public static final ArrowShape vee
public static final ArrowShape inv
public static final ArrowShape invdot
public static final ArrowShape invodot
public static final ArrowShape tee
public static final ArrowShape invempty
public static final ArrowShape odiamond
public static final ArrowShape crow
public static final ArrowShape obox
public static final ArrowShape halfopen
public static ArrowShape[] values()
for (ArrowShape c : ArrowShape.values()) System.out.println(c);
public static ArrowShape 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 © 2006–2016 Volker Bergmann. All rights reserved.