Summ:  Values Methods    Details:  Values Methods      Class:  Prev
com.artfulbits.aiCharts.Base
Enum ChartPointDeclaration.Usage

java.lang.Object java.lang.Enum<ChartPointDeclaration.Usage> com.artfulbits.aiCharts.Base.ChartPointDeclaration.Usage

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

 

Represents usages for Y points.

 

Since: 1.0

 

 

Values Summary
CloseValue
    
Value determines closing part of presented point.
HighValue
    
Value determines high part of represented point.
LowValue
    
Value determines low part of represented point.
OpenValue
    
Value determines opening part of presented point.
SizeValue
    
Value determines size.
YValue
    
Value should be considered as Y axis value determining point's position

 

 

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

 

 

 

 

YValue

 

public static final ChartPointDeclaration.Usage YValue

 

Value should be considered as Y axis value determining point's position

 

Since: 1.0

 

 

 

SizeValue

 

public static final ChartPointDeclaration.Usage SizeValue

 

Value determines size.

 

Since: 1.0

 

 

 

LowValue

 

public static final ChartPointDeclaration.Usage LowValue

 

Value determines low part of represented point.

 

Since: 1.0

 

 

 

HighValue

 

public static final ChartPointDeclaration.Usage HighValue

 

Value determines high part of represented point.

 

Since: 1.0

 

 

 

OpenValue

 

public static final ChartPointDeclaration.Usage OpenValue

 

Value determines opening part of presented point.

 

Since: 1.0

 

 

 

CloseValue

 

public static final ChartPointDeclaration.Usage CloseValue

 

Value determines closing part of presented point.

 

Since: 1.0

 

 

 

 

values

 

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

 

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

 

 

 

valueOf

 

public static ChartPointDeclaration.Usage 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.