com.github.dandelion.datatables.core.constants
Enum DTMessages

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

public enum DTMessages
extends Enum<DTMessages>

Since:
0.9.0
Author:
Thibault Duchateau

Enum Constant Summary
ARIA
           
ARIA_SORT_ASC
           
ARIA_SORT_DESC
           
EMPTYTABLE
           
INFO
           
INFOEMPTY
           
INFOFILTERED
           
INFOPOSTFIX
           
LENGTHMENU
           
LOADINGRECORDS
           
PAGINATE
           
PAGINATE_FIRST
           
PAGINATE_LAST
           
PAGINATE_NEXT
           
PAGINATE_PREVIOUS
           
PROCESSING
           
SEARC
           
ZERORECORDS
           
 
Method Summary
 String getPropertyName()
           
 String getRealName()
           
static DTMessages valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DTMessages[] 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

PROCESSING

public static final DTMessages PROCESSING

SEARC

public static final DTMessages SEARC

LENGTHMENU

public static final DTMessages LENGTHMENU

INFO

public static final DTMessages INFO

INFOEMPTY

public static final DTMessages INFOEMPTY

INFOFILTERED

public static final DTMessages INFOFILTERED

INFOPOSTFIX

public static final DTMessages INFOPOSTFIX

LOADINGRECORDS

public static final DTMessages LOADINGRECORDS

ZERORECORDS

public static final DTMessages ZERORECORDS

EMPTYTABLE

public static final DTMessages EMPTYTABLE

PAGINATE

public static final DTMessages PAGINATE

PAGINATE_FIRST

public static final DTMessages PAGINATE_FIRST

PAGINATE_PREVIOUS

public static final DTMessages PAGINATE_PREVIOUS

PAGINATE_NEXT

public static final DTMessages PAGINATE_NEXT

PAGINATE_LAST

public static final DTMessages PAGINATE_LAST

ARIA

public static final DTMessages ARIA

ARIA_SORT_ASC

public static final DTMessages ARIA_SORT_ASC

ARIA_SORT_DESC

public static final DTMessages ARIA_SORT_DESC
Method Detail

values

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

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

valueOf

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

getRealName

public String getRealName()

getPropertyName

public String getPropertyName()


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