public enum EdgeStyle extends Enum<EdgeStyle>
| Modifier and Type | Method and Description |
|---|---|
static EdgeStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EdgeStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdgeStyle solid
public static final EdgeStyle dashed
public static final EdgeStyle dotted
public static final EdgeStyle bold
public static EdgeStyle[] values()
for (EdgeStyle c : EdgeStyle.values()) System.out.println(c);
public static EdgeStyle 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.