org.moxieapps.gwt.highcharts.client
Enum Axis.WeekDay

java.lang.Object
  extended by java.lang.Enum<Axis.WeekDay>
      extended by org.moxieapps.gwt.highcharts.client.Axis.WeekDay
All Implemented Interfaces:
Serializable, Comparable<Axis.WeekDay>
Enclosing class:
Axis<T extends Axis>

public static enum Axis.WeekDay
extends Enum<Axis.WeekDay>

An enumeration of supported week days, which can be passed to methods such as Axis.setStartOfWeek(Axis.WeekDay).


Enum Constant Summary
FRIDAY
           
MONDAY
           
SATURDAY
           
SUNDAY
           
THURSDAY
           
TUESDAY
           
WEDNESDAY
           
 
Method Summary
 Number toNumber()
           
static Axis.WeekDay valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Axis.WeekDay[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SUNDAY

public static final Axis.WeekDay SUNDAY

MONDAY

public static final Axis.WeekDay MONDAY

TUESDAY

public static final Axis.WeekDay TUESDAY

WEDNESDAY

public static final Axis.WeekDay WEDNESDAY

THURSDAY

public static final Axis.WeekDay THURSDAY

FRIDAY

public static final Axis.WeekDay FRIDAY

SATURDAY

public static final Axis.WeekDay SATURDAY
Method Detail

values

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

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

valueOf

public static Axis.WeekDay 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

toNumber

public Number toNumber()


Copyright © 2015. All Rights Reserved.