org.openstreetmap.josm.gui.preferences
Enum SourceEditor.I18nString
java.lang.Object
java.lang.Enum<SourceEditor.I18nString>
org.openstreetmap.josm.gui.preferences.SourceEditor.I18nString
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<SourceEditor.I18nString>
- Enclosing class:
- SourceEditor
public static enum SourceEditor.I18nString
- extends java.lang.Enum<SourceEditor.I18nString>
Identifiers for strings that need to be provided.
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 |
AVAILABLE_SOURCES
public static final SourceEditor.I18nString AVAILABLE_SOURCES
ACTIVE_SOURCES
public static final SourceEditor.I18nString ACTIVE_SOURCES
NEW_SOURCE_ENTRY_TOOLTIP
public static final SourceEditor.I18nString NEW_SOURCE_ENTRY_TOOLTIP
NEW_SOURCE_ENTRY
public static final SourceEditor.I18nString NEW_SOURCE_ENTRY
REMOVE_SOURCE_TOOLTIP
public static final SourceEditor.I18nString REMOVE_SOURCE_TOOLTIP
EDIT_SOURCE_TOOLTIP
public static final SourceEditor.I18nString EDIT_SOURCE_TOOLTIP
ACTIVATE_TOOLTIP
public static final SourceEditor.I18nString ACTIVATE_TOOLTIP
RELOAD_ALL_AVAILABLE
public static final SourceEditor.I18nString RELOAD_ALL_AVAILABLE
LOADING_SOURCES_FROM
public static final SourceEditor.I18nString LOADING_SOURCES_FROM
FAILED_TO_LOAD_SOURCES_FROM
public static final SourceEditor.I18nString FAILED_TO_LOAD_SOURCES_FROM
FAILED_TO_LOAD_SOURCES_FROM_HELP_TOPIC
public static final SourceEditor.I18nString FAILED_TO_LOAD_SOURCES_FROM_HELP_TOPIC
ILLEGAL_FORMAT_OF_ENTRY
public static final SourceEditor.I18nString ILLEGAL_FORMAT_OF_ENTRY
values
public static SourceEditor.I18nString[] 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 (SourceEditor.I18nString c : SourceEditor.I18nString.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static SourceEditor.I18nString 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 name
java.lang.NullPointerException
- if the argument is null
JOSM