public static enum Overlay.LineStyle extends Enum<Overlay.LineStyle>
Modifier and Type | Method and Description |
---|---|
static Overlay.LineStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Overlay.LineStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Overlay.LineStyle SOLID
public static final Overlay.LineStyle DASH
public static final Overlay.LineStyle DOT
public static final Overlay.LineStyle DOT_DASH
public static final Overlay.LineStyle NONE
public static Overlay.LineStyle[] values()
for (Overlay.LineStyle c : Overlay.LineStyle.values()) System.out.println(c);
public static Overlay.LineStyle 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 © 2014–2022 ImageJ. All rights reserved.