BrightSide Workbench Full Report + Source Code
org.turro.i18n.I_ Class Reference

Static Public Member Functions

static String get (String msg)
 
static String get (String msg, int count)
 
static String format (String msg, Object... arguments)
 
static String get (Locale locale, String msg)
 
static String get (Locale locale, String msg, int count)
 
static String format (Locale locale, String msg, Object... arguments)
 
static I18nApiWrapper api ()
 
static I18nMapWrapper map ()
 
static I18nMapWrapper map (Locale locale)
 
static String keyValue (String key)
 
static String byKey (String key)
 
static String byKey (Locale locale, String key)
 
static I18nByKey byKeyMap ()
 
static I18nLocales getLocales ()
 
static I18nCompatibilityWrapper compatibility ()
 
static I18nCompatibilityWrapper compatibility (Locale locale)
 
static I18nCompatibilityMap compatibilityMap ()
 
static I18nCompatibilityMap compatibilityMap (Locale locale)
 
static I18nLocales locales (HttpServletRequest request)
 
static void resetMaps ()
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 39 of file I_.java.

Member Function Documentation

◆ api()

static I18nApiWrapper org.turro.i18n.I_.api ( )
static

Definition at line 65 of file I_.java.

65  {
66  return instance();
67  }
Here is the caller graph for this function:

◆ byKey() [1/2]

static String org.turro.i18n.I_.byKey ( Locale  locale,
String  key 
)
static

Definition at line 87 of file I_.java.

87  {
88  return instance().byKey(locale, key);
89  }

◆ byKey() [2/2]

static String org.turro.i18n.I_.byKey ( String  key)
static

Definition at line 83 of file I_.java.

83  {
84  return instance().byKey(key);
85  }
Here is the caller graph for this function:

◆ byKeyMap()

static I18nByKey org.turro.i18n.I_.byKeyMap ( )
static

Definition at line 91 of file I_.java.

91  {
92  return instance().getByKeyAsMap();
93  }
Here is the caller graph for this function:

◆ compatibility() [1/2]

static I18nCompatibilityWrapper org.turro.i18n.I_.compatibility ( )
static

Definition at line 109 of file I_.java.

109  {
110  return I18nCompatibilityWrapper.from(instance());
111  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ compatibility() [2/2]

static I18nCompatibilityWrapper org.turro.i18n.I_.compatibility ( Locale  locale)
static

Definition at line 113 of file I_.java.

113  {
114  return I18nCompatibilityWrapper.from(api(locale));
115  }
static I18nApiWrapper api()
Definition: I_.java:65
Here is the call graph for this function:

◆ compatibilityMap() [1/2]

static I18nCompatibilityMap org.turro.i18n.I_.compatibilityMap ( )
static

Definition at line 117 of file I_.java.

117  {
118  return I18nCompatibilityMap.from(compatibility());
119  }
static I18nCompatibilityWrapper compatibility()
Definition: I_.java:109
Here is the call graph for this function:
Here is the caller graph for this function:

◆ compatibilityMap() [2/2]

static I18nCompatibilityMap org.turro.i18n.I_.compatibilityMap ( Locale  locale)
static

Definition at line 121 of file I_.java.

121  {
122  return I18nCompatibilityMap.from(compatibility(locale));
123  }
Here is the call graph for this function:

◆ format() [1/2]

static String org.turro.i18n.I_.format ( Locale  locale,
String  msg,
Object...  arguments 
)
static

Definition at line 61 of file I_.java.

61  {
62  return instance().format(locale, msg, arguments);
63  }

◆ format() [2/2]

static String org.turro.i18n.I_.format ( String  msg,
Object...  arguments 
)
static

Definition at line 49 of file I_.java.

49  {
50  return instance().format(msg, arguments);
51  }
Here is the caller graph for this function:

◆ get() [1/4]

static String org.turro.i18n.I_.get ( Locale  locale,
String  msg 
)
static

Definition at line 53 of file I_.java.

53  {
54  return instance().get(locale, msg);
55  }

◆ get() [2/4]

static String org.turro.i18n.I_.get ( Locale  locale,
String  msg,
int  count 
)
static

Definition at line 57 of file I_.java.

57  {
58  return instance().get(locale, msg, count);
59  }

◆ get() [3/4]

static String org.turro.i18n.I_.get ( String  msg)
static

Definition at line 41 of file I_.java.

41  {
42  return instance().get(msg);
43  }

◆ get() [4/4]

static String org.turro.i18n.I_.get ( String  msg,
int  count 
)
static

Definition at line 45 of file I_.java.

45  {
46  return instance().get(msg, count);
47  }

◆ getLocales()

static I18nLocales org.turro.i18n.I_.getLocales ( )
static

Definition at line 103 of file I_.java.

103  {
104  return instance().getLocales();
105  }

◆ keyValue()

static String org.turro.i18n.I_.keyValue ( String  key)
static

Definition at line 79 of file I_.java.

79  {
80  return instance().keyValue(key);
81  }
Here is the caller graph for this function:

◆ locales()

static I18nLocales org.turro.i18n.I_.locales ( HttpServletRequest  request)
static

Definition at line 127 of file I_.java.

127  {
128  return constructFrom(request);
129  }

◆ map() [1/2]

static I18nMapWrapper org.turro.i18n.I_.map ( )
static

Definition at line 69 of file I_.java.

69  {
70  return instance().getAsMap();
71  }
Here is the caller graph for this function:

◆ map() [2/2]

static I18nMapWrapper org.turro.i18n.I_.map ( Locale  locale)
static

Definition at line 73 of file I_.java.

73  {
74  return instance().getAsMap(locale);
75  }

◆ resetMaps()

static void org.turro.i18n.I_.resetMaps ( )
static

Definition at line 196 of file I_.java.

196  {
197  INIT.reset();
198  I18nByKey.resetMap();
199  I18nCompatibilityKey.resetMap();
200  }
Here is the call graph for this function:
Here is the caller graph for this function:

The documentation for this class was generated from the following file: