Summ:  Values Methods    Details:  Values Methods      Class:  Prev Next
com.artfulbits.aiCharts.Types
Enum ChartPieType.LabelStyle

java.lang.Object java.lang.Enum<ChartPieType.LabelStyle> com.artfulbits.aiCharts.Types.ChartPieType.LabelStyle

Declaration: public static enum ChartPieType.LabelStyle extends Enum<ChartPieType.LabelStyle>
Enclosing Class: ChartPieType
All Interfaces: java.lang.Comparable<ChartPieType.LabelStyle>, java.io.Serializable

 

Identifies style applied to pie labels' positions.

 

Since: 1.0

 

 

Values Summary
Inside
    
Labels rendered inside of pie's area.
Outside
    
Labels rendered outside of pie's area.
OutsideColumn
    
Labels rendered outside of pie's area in column.

 

 

Methods Summary
static ChartPieType.LabelStyle valueOf(java.lang.String name)
    
Returns the enum constant of this type with the specified name.
static ChartPieType.LabelStyle[] 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

 

 

 

 

Inside

 

public static final ChartPieType.LabelStyle Inside

 

Labels rendered inside of pie's area.

 

Since: 1.0

 

 

 

Outside

 

public static final ChartPieType.LabelStyle Outside

 

Labels rendered outside of pie's area.

 

Since: 1.0

 

 

 

OutsideColumn

 

public static final ChartPieType.LabelStyle OutsideColumn

 

Labels rendered outside of pie's area in column.

 

Since: 1.5

 

 

 

 

values

 

public static ChartPieType.LabelStyle[] values( )

 

Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
    for (ChartPieType.LabelStyle c : ChartPieType.LabelStyle.values())
        System.out.println(c);

 

Returns:
an array containing the constants of this enum type, in the order they are declared

 

 

 

valueOf

 

public static ChartPieType.LabelStyle valueOf( java.lang.String name)

 

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. Extraneous whitespace characters are not permitted.

 

Parameters:
name-
the name of the enum constant to be returned
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

 

 

© 2005 - 2010 ArtfulBits. All rights reserved.