Methods Summary |
---|
public int | addLocaleCharsetMap(LocaleCharsetMap value)
return this.addValue(LOCALE_CHARSET_MAP, value);
|
public LocaleCharsetMap | getLocaleCharsetMap(int index)
return (LocaleCharsetMap)this.getValue(LOCALE_CHARSET_MAP, index);
|
public LocaleCharsetMap[] | getLocaleCharsetMap()
return (LocaleCharsetMap[])this.getValues(LOCALE_CHARSET_MAP);
|
public boolean | isParameterEncoding()
Boolean ret = (Boolean)this.getValue(PARAMETER_ENCODING);
if (ret == null) {
return false;
}
return ret.booleanValue();
|
public int | removeLocaleCharsetMap(LocaleCharsetMap value)
return this.removeValue(LOCALE_CHARSET_MAP, value);
|
public void | setLocaleCharsetMap(int index, LocaleCharsetMap value)
// This attribute is an array containing at least one element
this.setValue(LOCALE_CHARSET_MAP, index, value);
|
public void | setLocaleCharsetMap(LocaleCharsetMap[] value)
this.setValue(LOCALE_CHARSET_MAP, value);
|
public void | setParameterEncoding(boolean value)
this.setValue(PARAMETER_ENCODING, Boolean.valueOf(value));
|
public int | sizeLocaleCharsetMap()
return this.size(LOCALE_CHARSET_MAP);
|
public boolean | verify()
return true;
|