com.atlassian.jira.web.bean.i18n
Interface TranslationStore

All Known Implementing Classes:
ByteArrayBackedStore, CompressedKeyStore, StringBackedStore, TranslationStoreTemplate

@Immutable
public interface TranslationStore

Store for i18n keys and their respective values.

Since:
6.2

Method Summary
 boolean containsKey(String key)
          Whether this TranslationStore contains the given key.
 String get(String key)
          Returns the i18n value associated with a key.
 Iterable<String> keys()
          Returns an Iterable over this TranslationStore's keys.
 

Method Detail

get

String get(String key)
Returns the i18n value associated with a key.

Parameters:
key - a String key
Returns:
a String

containsKey

boolean containsKey(String key)
Whether this TranslationStore contains the given key.

Parameters:
key - a String key
Returns:
true if this TranslationStore contains the given key

keys

Iterable<String> keys()
Returns an Iterable over this TranslationStore's keys.

Returns:
an Iterable<String>


Copyright © 2002-2014 Atlassian. All Rights Reserved.