public static enum IErrorBar.ErrorBarType extends Enum<IErrorBar.ErrorBarType>
| Enum Constant and Description |
|---|
BOTH
the error bar in both positive and negative directions
|
MINUS
the error bar in negative direction
|
PLUS
the error bar in positive direction
|
| Modifier and Type | Field and Description |
|---|---|
String |
label
the label for error bar type
|
| Modifier and Type | Method and Description |
|---|---|
static IErrorBar.ErrorBarType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IErrorBar.ErrorBarType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IErrorBar.ErrorBarType BOTH
public static final IErrorBar.ErrorBarType PLUS
public static final IErrorBar.ErrorBarType MINUS
public final String label
public static IErrorBar.ErrorBarType[] values()
for (IErrorBar.ErrorBarType c : IErrorBar.ErrorBarType.values()) System.out.println(c);
public static IErrorBar.ErrorBarType 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 © 2015. All Rights Reserved.