Class Resources
Object
ResourceBundle
IndexedResourceBundle
Resources
- All Implemented Interfaces:
Localized
public final class Resources
extends IndexedResourceBundle
Warning and error messages that are specific to the
package.
sis-cloud-aws
module.
Resources in this file should not be used by any other module. For resources shared by
all modules in the Apache SIS project, see
invalid @link
org.apache.sis.util.resources
- Since:
- 1.2
Defined in the sis-cloud-aws
module
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class ResourceBundle
ResourceBundle.Control
-
Field Summary
Fields inherited from class IndexedResourceBundle
LOCALE_KEY
Fields inherited from class ResourceBundle
parent
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Resources
forLocale
(Locale locale) Returns resources in the given locale.static String
format
(short key) Gets a string for the given key from this resource bundle or one of its parents.static String
Gets a string for the given key and replaces all occurrence of "{0}" with value ofarg0
.static String
Gets a string for the given key and replaces all occurrence of "{0}", "{1}", with values ofarg0
,arg1
.protected KeyConstants
Returns the handle for theKeys
constants.Methods inherited from class IndexedResourceBundle
appendLabel, getBundle, getKeys, getLabel, getLocale, getLogRecord, getLogRecord, getLogRecord, getLogRecord, getLogRecord, getString, getString, getString, getString, getString, getString, handleGetObject, list, toLabel, toString
Methods inherited from class ResourceBundle
clearCache, clearCache, containsKey, getBaseBundleName, getBundle, getBundle, getBundle, getBundle, getBundle, getBundle, getBundle, getBundle, getLocale, getObject, getString, getStringArray, handleKeySet, keySet, setParent
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface Localized
getLocale
-
Constructor Details
-
Resources
Constructs a new resource bundle loading data from the given UTF file.- Parameters:
resources
- the path of the binary file containing resources, ornull
if there is no resources. The resources may be a file or an entry in a JAR file.
-
-
Method Details
-
getKeyConstants
protected KeyConstants getKeyConstants()Returns the handle for theKeys
constants.- Overrides:
getKeyConstants
in classIndexedResourceBundle
- Returns:
- a handler for the constants declared in the inner
Keys
class.
-
forLocale
Returns resources in the given locale.- Parameters:
locale
- the locale, ornull
for the default locale.- Returns:
- resources in the given locale.
- Throws:
MissingResourceException
- if resources cannot be found.
-
format
Gets a string for the given key from this resource bundle or one of its parents.- Parameters:
key
- the key for the desired string.- Returns:
- the string for the given key.
- Throws:
MissingResourceException
- if no object for the given key can be found.
-
format
Gets a string for the given key and replaces all occurrence of "{0}" with value ofarg0
.- Parameters:
key
- the key for the desired string.arg0
- value to substitute to "{0}".- Returns:
- the formatted string for the given key.
- Throws:
MissingResourceException
- if no object for the given key can be found.
-
format
Gets a string for the given key and replaces all occurrence of "{0}", "{1}", with values ofarg0
,arg1
.- Parameters:
key
- the key for the desired string.arg0
- value to substitute to "{0}".arg1
- value to substitute to "{1}".- Returns:
- the formatted string for the given key.
- Throws:
MissingResourceException
- if no object for the given key can be found.
-