|
Chart FX 7 for Java Server | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AxisFormat>
com.softwarefx.chartfx.server.AxisFormat
public enum AxisFormat
Defines the valid formats to may be apply to an axis.
Enum Constant Summary | |
---|---|
CURRENCY
Displays Currency, as defined in the International section of the Control Panel. |
|
DATE
Displays a Short Date, as defined in the International section of the Control Panel. |
|
DATE_TIME
Displays Date-Time, as defined in the International section of the Control Panel. |
|
LONG_DATE
Displays a Long Date, as defined in the International section of the Control Panel. |
|
NONE
Displays a Number without formatting. |
|
NUMBER
Displays a Number, as defined in the International section of the Control Panel. |
|
PERCENTAGE
Displays numbers multiplied by 100 with a percent sign (%) appended to the right; display two digits to the right of the decimal separator. |
|
SCIENTIFIC
Displays standard scientific notation. |
|
TIME
Displays Time, as defined in the International section of the Control Panel. |
Method Summary | |
---|---|
static EnumSet<AxisFormat> |
getEnumSetValue(int value)
Returns a EnumSet that represents the given numeric value. |
static AxisFormat |
getEnumValue(int value)
Returns a Enum Item that represents the given numeric value. |
static int |
getUnderlyingValue(AxisFormat value)
Returns a numeric value that represents the given EnumSet or Enum item. |
static int |
getUnderlyingValue(EnumSet<AxisFormat> value)
Returns a numeric value that represents the given EnumSet or Enum item. |
static AxisFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AxisFormat[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final AxisFormat NONE
public static final AxisFormat NUMBER
public static final AxisFormat CURRENCY
public static final AxisFormat SCIENTIFIC
public static final AxisFormat PERCENTAGE
public static final AxisFormat DATE
public static final AxisFormat LONG_DATE
public static final AxisFormat TIME
public static final AxisFormat DATE_TIME
Method Detail |
---|
public static AxisFormat[] values()
for (AxisFormat c : AxisFormat.values()) System.out.println(c);
public static AxisFormat valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static EnumSet<AxisFormat> getEnumSetValue(int value)
Returns a EnumSet that represents the given numeric value.
value
- numeric representation of the Enumset.public static AxisFormat getEnumValue(int value)
Returns a Enum Item that represents the given numeric value.
value
- numeric representation of the Enum item.public static int getUnderlyingValue(AxisFormat value)
Returns a numeric value that represents the given EnumSet or Enum item.
value
- A Enum Item or EnumSet.public static int getUnderlyingValue(EnumSet<AxisFormat> value)
Returns a numeric value that represents the given EnumSet or Enum item.
value
- A Enum Item or EnumSet.
|
http://www.softwarefx.com | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |