Package com.microstrategy.utils
Class SDKHelper
- java.lang.Object
-
- com.microstrategy.utils.SDKHelper
-
public class SDKHelper extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
GUID_NULL
-
Constructor Summary
Constructors Constructor Description SDKHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static int
fixInt(RequestKeys rk, java.lang.String param, int defaultValue, boolean isZeroLengthValid)
Transforms the string sent as parameter into anint
value.static int
fixInt(java.lang.String fixedValue, int defaultValue)
Transforms the string sent as parameter into anint
value.static java.lang.String
getInboxMessageExpiredDisplayMessage(ResultSetBean bean)
static java.lang.String
getInboxMessageExpiredDisplayMessage(java.lang.String message, java.lang.String objType)
static java.lang.String
localizeDouble(java.lang.String doubleValue, java.lang.String localeID)
Converts a double to the specified localestatic java.lang.String
localizeDoubleToEnglish(java.lang.String doubleValue)
Converts a double to English locale
-
-
-
Field Detail
-
GUID_NULL
public static final java.lang.String GUID_NULL
- See Also:
- Constant Field Values
-
-
Method Detail
-
fixInt
public static int fixInt(java.lang.String fixedValue, int defaultValue)
Transforms the string sent as parameter into anint
value.- Parameters:
fixedValue
-String
containing the value to transform into an integerdefaultValue
-int
with the default value of the parameter- Returns:
- the value of the parameter as an
int
. If an error is generated while the conversion the default value will be used.
-
fixInt
public static int fixInt(RequestKeys rk, java.lang.String param, int defaultValue, boolean isZeroLengthValid)
Transforms the string sent as parameter into anint
value.- Parameters:
rk
-RequestKeys
object initializedparam
-String
containing the name of the parameter to search fordefaultValue
-String
with the default value of the parameterisZeroLengthValid
-boolean
flag indicating if the value of the parameter can be zero-length- Returns:
- the value of the parameter. If not found, or the length of the value is zero and this is not allowed, the default value will be used. Otherwise, the value found for the parameter will be the output of the method.
-
localizeDouble
public static java.lang.String localizeDouble(java.lang.String doubleValue, java.lang.String localeID)
Converts a double to the specified locale- Parameters:
doubleValue
- value to localizelocaleID
- locale to localize to- Returns:
- localized value
-
localizeDoubleToEnglish
public static java.lang.String localizeDoubleToEnglish(java.lang.String doubleValue)
Converts a double to English locale- Parameters:
doubleValue
- value to localize- Returns:
- value localized
-
getInboxMessageExpiredDisplayMessage
public static java.lang.String getInboxMessageExpiredDisplayMessage(ResultSetBean bean)
-
getInboxMessageExpiredDisplayMessage
public static java.lang.String getInboxMessageExpiredDisplayMessage(java.lang.String message, java.lang.String objType)
-
-