Package org.teamapps.ux.i18n
Enum TeamAppsDictionary
- java.lang.Object
-
- java.lang.Enum<TeamAppsDictionary>
-
- org.teamapps.ux.i18n.TeamAppsDictionary
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TeamAppsDictionary>
public enum TeamAppsDictionary extends java.lang.Enum<TeamAppsDictionary>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetKey()static TeamAppsDictionaryvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TeamAppsDictionary[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOGIN
public static final TeamAppsDictionary LOGIN
-
PASSWORD
public static final TeamAppsDictionary PASSWORD
-
RESET_PASSWORD
public static final TeamAppsDictionary RESET_PASSWORD
-
WRONG_USER_NAME_OR_PASSWORD
public static final TeamAppsDictionary WRONG_USER_NAME_OR_PASSWORD
-
USER_NAME
public static final TeamAppsDictionary USER_NAME
-
USER_I_D
public static final TeamAppsDictionary USER_I_D
-
ADD
public static final TeamAppsDictionary ADD
-
ADD_RECORD
public static final TeamAppsDictionary ADD_RECORD
-
EDIT
public static final TeamAppsDictionary EDIT
-
REMOVE
public static final TeamAppsDictionary REMOVE
-
REMOVE_SELECTION
public static final TeamAppsDictionary REMOVE_SELECTION
-
REMOVE_ALL_FILTERS
public static final TeamAppsDictionary REMOVE_ALL_FILTERS
-
DELETE
public static final TeamAppsDictionary DELETE
-
DELETE_RECORD
public static final TeamAppsDictionary DELETE_RECORD
-
SAVE
public static final TeamAppsDictionary SAVE
-
SAVE_CHANGES
public static final TeamAppsDictionary SAVE_CHANGES
-
SAVE_AND_CLOSE
public static final TeamAppsDictionary SAVE_AND_CLOSE
-
REVERT
public static final TeamAppsDictionary REVERT
-
REVERT_CHANGES
public static final TeamAppsDictionary REVERT_CHANGES
-
ERROR
public static final TeamAppsDictionary ERROR
-
OK
public static final TeamAppsDictionary OK
-
CANCEL
public static final TeamAppsDictionary CANCEL
-
CANCEL_AND_CLOSE
public static final TeamAppsDictionary CANCEL_AND_CLOSE
-
PRINT
public static final TeamAppsDictionary PRINT
-
HELP
public static final TeamAppsDictionary HELP
-
UPLOAD
public static final TeamAppsDictionary UPLOAD
-
DOWNLOAD
public static final TeamAppsDictionary DOWNLOAD
-
REGISTER
public static final TeamAppsDictionary REGISTER
-
ROTATE
public static final TeamAppsDictionary ROTATE
-
ROTATE_PICTURE
public static final TeamAppsDictionary ROTATE_PICTURE
-
CROP_IMAGE
public static final TeamAppsDictionary CROP_IMAGE
-
YEAR
public static final TeamAppsDictionary YEAR
-
MONTH
public static final TeamAppsDictionary MONTH
-
WEEK
public static final TeamAppsDictionary WEEK
-
DAY
public static final TeamAppsDictionary DAY
-
GROUP
public static final TeamAppsDictionary GROUP
-
GROUPING
public static final TeamAppsDictionary GROUPING
-
BY_FULL_VALUE
public static final TeamAppsDictionary BY_FULL_VALUE
-
BY_WORDS
public static final TeamAppsDictionary BY_WORDS
-
BY_YEAR
public static final TeamAppsDictionary BY_YEAR
-
BY_QUARTER
public static final TeamAppsDictionary BY_QUARTER
-
BY_MONTH
public static final TeamAppsDictionary BY_MONTH
-
BY_WEEK
public static final TeamAppsDictionary BY_WEEK
-
BY_Day
public static final TeamAppsDictionary BY_Day
-
TODAY
public static final TeamAppsDictionary TODAY
-
NOW
public static final TeamAppsDictionary NOW
-
PREVIOUS
public static final TeamAppsDictionary PREVIOUS
-
NEXT
public static final TeamAppsDictionary NEXT
-
BACK
public static final TeamAppsDictionary BACK
-
CREATION_DATE
public static final TeamAppsDictionary CREATION_DATE
-
MODIFICATION_DATE
public static final TeamAppsDictionary MODIFICATION_DATE
-
DELETION_DATE
public static final TeamAppsDictionary DELETION_DATE
-
RESTORE_DATE
public static final TeamAppsDictionary RESTORE_DATE
-
CREATED_BY
public static final TeamAppsDictionary CREATED_BY
-
MODIFIED_BY
public static final TeamAppsDictionary MODIFIED_BY
-
DELETED_BY
public static final TeamAppsDictionary DELETED_BY
-
RESTORED_BY
public static final TeamAppsDictionary RESTORED_BY
-
SEARCH
public static final TeamAppsDictionary SEARCH
-
SEARCH___
public static final TeamAppsDictionary SEARCH___
-
VALUES
public static final TeamAppsDictionary VALUES
-
COUNT
public static final TeamAppsDictionary COUNT
-
FILTER
public static final TeamAppsDictionary FILTER
-
EMPTY
public static final TeamAppsDictionary EMPTY
-
SELECT
public static final TeamAppsDictionary SELECT
-
SELECT_AREA
public static final TeamAppsDictionary SELECT_AREA
-
REQUIRED_FIELD
public static final TeamAppsDictionary REQUIRED_FIELD
-
RECORD_SUCCESSFULLY_SAVED
public static final TeamAppsDictionary RECORD_SUCCESSFULLY_SAVED
-
RECORD_SUCCESSFULLY_DELETED
public static final TeamAppsDictionary RECORD_SUCCESSFULLY_DELETED
-
FILE_TOO_LARGE_MESSAGE
public static final TeamAppsDictionary FILE_TOO_LARGE_MESSAGE
-
FILE_TOO_LARGE_SHORT_MESSAGE
public static final TeamAppsDictionary FILE_TOO_LARGE_SHORT_MESSAGE
-
UPLOAD_ERROR_MESSAGE
public static final TeamAppsDictionary UPLOAD_ERROR_MESSAGE
-
UPLOAD_ERROR_SHORT_MESSAGE
public static final TeamAppsDictionary UPLOAD_ERROR_SHORT_MESSAGE
-
NO_RUNNING_TASKS
public static final TeamAppsDictionary NO_RUNNING_TASKS
-
-
Method Detail
-
values
public static TeamAppsDictionary[] 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 (TeamAppsDictionary c : TeamAppsDictionary.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TeamAppsDictionary 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 namejava.lang.NullPointerException- if the argument is null
-
getKey
public java.lang.String getKey()
-
-