Summ:  Values Methods    Details:  Values Methods      Class:  Prev Next
com.artfulbits.aiCharts.Types
Enum ChartFunnelType.Style

java.lang.Object java.lang.Enum<ChartFunnelType.Style> com.artfulbits.aiCharts.Types.ChartFunnelType.Style

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

 

Represents the mode that is used to draw the funnel.

 

Since: 1.0

 

 

Values Summary
YIsHeight
    
Y value is considered to be a width of funnel segments.
YIsWidth
    
Y value is considered to be a height of funnel segments.

 

 

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

 

 

 

 

YIsHeight

 

public static final ChartFunnelType.Style YIsHeight

 

Y value is considered to be a width of funnel segments.

 

Since: 1.0

 

 

 

YIsWidth

 

public static final ChartFunnelType.Style YIsWidth

 

Y value is considered to be a height of funnel segments.

 

Since: 1.0

 

 

 

 

values

 

public static ChartFunnelType.Style[] 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 (ChartFunnelType.Style c : ChartFunnelType.Style.values())
        System.out.println(c);

 

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

 

 

 

valueOf

 

public static ChartFunnelType.Style 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.