java.io.Serializable, java.lang.Comparable<IErrorBar.ErrorBarType>public static enum IErrorBar.ErrorBarType extends java.lang.Enum<IErrorBar.ErrorBarType>
| Enum Constant | 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 | Description |
|---|---|---|
java.lang.String |
label |
the label for error bar type
|
| Modifier and Type | Method | Description |
|---|---|---|
static IErrorBar.ErrorBarType |
valueOf(java.lang.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 static IErrorBar.ErrorBarType[] values()
for (IErrorBar.ErrorBarType c : IErrorBar.ErrorBarType.values()) System.out.println(c);
public static IErrorBar.ErrorBarType 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