|
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<LegendBoxStyles>
com.softwarefx.chartfx.server.LegendBoxStyles
public enum LegendBoxStyles
Allows you to specify the style for a legend.
Enum Constant Summary | |
---|---|
DEFAULT
Default legend settings. |
|
HIDE_PARTIAL
Hides all legends if any of them does not fix in the box. |
|
NO_COLOR
No Colors are used for markers in legend. |
|
RIGHT_ALIGN
Right aligns the text in the legend. |
|
SHOW_MENU
Enables the context menu for the legend. |
|
WORDBREAK
Wraps text when the legend alignment is set to spread. |
Method Summary | |
---|---|
static EnumSet<LegendBoxStyles> |
getEnumSetValue(int value)
Returns a EnumSet that represents the given numeric value. |
static LegendBoxStyles |
getEnumValue(int value)
Returns a Enum Item that represents the given numeric value. |
static int |
getUnderlyingValue(EnumSet<LegendBoxStyles> value)
Returns a numeric value that represents the given EnumSet or Enum item. |
static int |
getUnderlyingValue(LegendBoxStyles value)
Returns a numeric value that represents the given EnumSet or Enum item. |
static LegendBoxStyles |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static LegendBoxStyles[] |
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 LegendBoxStyles WORDBREAK
public static final LegendBoxStyles SHOW_MENU
public static final LegendBoxStyles RIGHT_ALIGN
public static final LegendBoxStyles NO_COLOR
public static final LegendBoxStyles HIDE_PARTIAL
public static final LegendBoxStyles DEFAULT
Method Detail |
---|
public static LegendBoxStyles[] values()
for (LegendBoxStyles c : LegendBoxStyles.values()) System.out.println(c);
public static LegendBoxStyles 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<LegendBoxStyles> getEnumSetValue(int value)
Returns a EnumSet that represents the given numeric value.
value
- numeric representation of the Enumset.public static LegendBoxStyles getEnumValue(int value)
Returns a Enum Item that represents the given numeric value.
value
- numeric representation of the Enum item.public static int getUnderlyingValue(LegendBoxStyles value)
Returns a numeric value that represents the given EnumSet or Enum item.
value
- A Enum Item or EnumSet.public static int getUnderlyingValue(EnumSet<LegendBoxStyles> 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 |