com.github.dandelion.datatables.core.extension.theme
Enum ThemeOption

java.lang.Object
  extended by java.lang.Enum<ThemeOption>
      extended by com.github.dandelion.datatables.core.extension.theme.ThemeOption
All Implemented Interfaces:
Serializable, Comparable<ThemeOption>

public enum ThemeOption
extends Enum<ThemeOption>

All possible theme options.

Author:
Thibault Duchateau

Enum Constant Summary
BASE
           
BLACKTIE
           
BLITZER
           
CUPERTINO
           
DARKHIVE
           
DOTLUV
           
EGGPLANT
           
EXCITEBIKE
           
FLICK
           
HOTSNEAKS
           
HUMANITY
           
LEFROG
           
MINTCHOC
           
OVERCAST
           
PEPPERGRINDER
           
REDMOND
           
SMOOTHNESS
           
SOUTHSTREET
           
START
           
SUNNY
           
SWANKYPURSE
           
TABLECLOTH
           
TRONTASTIC
           
UIDARKNESS
           
UILIGHTNESS
           
VADER
           
 
Method Summary
static ThemeOption valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ThemeOption[] 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

BASE

public static final ThemeOption BASE

BLACKTIE

public static final ThemeOption BLACKTIE

BLITZER

public static final ThemeOption BLITZER

CUPERTINO

public static final ThemeOption CUPERTINO

DARKHIVE

public static final ThemeOption DARKHIVE

DOTLUV

public static final ThemeOption DOTLUV

EGGPLANT

public static final ThemeOption EGGPLANT

EXCITEBIKE

public static final ThemeOption EXCITEBIKE

FLICK

public static final ThemeOption FLICK

HOTSNEAKS

public static final ThemeOption HOTSNEAKS

HUMANITY

public static final ThemeOption HUMANITY

LEFROG

public static final ThemeOption LEFROG

MINTCHOC

public static final ThemeOption MINTCHOC

OVERCAST

public static final ThemeOption OVERCAST

PEPPERGRINDER

public static final ThemeOption PEPPERGRINDER

REDMOND

public static final ThemeOption REDMOND

SMOOTHNESS

public static final ThemeOption SMOOTHNESS

SOUTHSTREET

public static final ThemeOption SOUTHSTREET

START

public static final ThemeOption START

SUNNY

public static final ThemeOption SUNNY

SWANKYPURSE

public static final ThemeOption SWANKYPURSE

TRONTASTIC

public static final ThemeOption TRONTASTIC

UIDARKNESS

public static final ThemeOption UIDARKNESS

UILIGHTNESS

public static final ThemeOption UILIGHTNESS

VADER

public static final ThemeOption VADER

TABLECLOTH

public static final ThemeOption TABLECLOTH
Method Detail

values

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

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

valueOf

public static ThemeOption 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


Copyright © 2013–2014 Dandelion Project. All rights reserved.