public class Messages extends Object
activejdbc_messages.
 It is primarily used by the validation framework, but client code can use it as well for other things.| Modifier and Type | Method and Description | 
|---|---|
static String | 
message(String key,
       Locale locale,
       Object... params)
Looks for a localized property/message in  
activejdbc_messages bundle. | 
static String | 
message(String key,
       Object... params)
Looks for a property/message in  
activejdbc_messages bundle. | 
public static String message(String key, Locale locale, Object... params)
activejdbc_messages bundle.key - key of the property.locale - locale of a bundle, or null for default localeparams - list of parameters for a message. The order of parameters in this list will correspond to the
 numeric order in the parameters listed in the message and has nothing to do with a physical order. This means
 that the first parameter in the list will correspond to {0}, second to {1} and so on.public static String message(String key, Object... params)
activejdbc_messages bundle.key - key of the property.params - list of substitution parameters for a message.Copyright © 2020 JavaLite. All rights reserved.