public static enum BarsView.Line extends java.lang.Enum<BarsView.Line>
Modifier and Type | Method and Description |
---|---|
static BarsView.Line |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BarsView.Line[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BarsView.Line NONE
public static final BarsView.Line SOLID
public static final BarsView.Line DASH
public static final BarsView.Line DOT
public static final BarsView.Line DASH_DOT
public static BarsView.Line[] values()
for (BarsView.Line c : BarsView.Line.values()) System.out.println(c);
public static BarsView.Line 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