org.moxieapps.gwt.highcharts.client.labels
Enum StackLabels.VerticalAlign

java.lang.Object
  extended by java.lang.Enum<StackLabels.VerticalAlign>
      extended by org.moxieapps.gwt.highcharts.client.labels.StackLabels.VerticalAlign
All Implemented Interfaces:
Serializable, Comparable<StackLabels.VerticalAlign>
Enclosing class:
StackLabels

public static enum StackLabels.VerticalAlign
extends Enum<StackLabels.VerticalAlign>

An enumeration of supported stack labels vertical alignment types, which can be passed to methods like StackLabels.setVerticalAlign(StackLabels.VerticalAlign) method.


Enum Constant Summary
BOTTOM
          Show the labels at the bottom of the column
MIDDLE
          Show the labels in the middle of the column
TOP
          Show the labels at the top of the column
 
Method Summary
 String toString()
           
static StackLabels.VerticalAlign valueOf(String name)
          Returns the enum constant of this type with the specified name.
static StackLabels.VerticalAlign[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TOP

public static final StackLabels.VerticalAlign TOP
Show the labels at the top of the column


MIDDLE

public static final StackLabels.VerticalAlign MIDDLE
Show the labels in the middle of the column


BOTTOM

public static final StackLabels.VerticalAlign BOTTOM
Show the labels at the bottom of the column

Method Detail

values

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

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

valueOf

public static StackLabels.VerticalAlign valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

toString

public String toString()
Overrides:
toString in class Enum<StackLabels.VerticalAlign>


Copyright © 2015. All Rights Reserved.