Lines Matching refs:defaultValue

774         Object defaultValue, ClassCastException e) {
783 sb.append(defaultValue);
795 * Returns the value associated with the given key, or defaultValue if
801 public boolean getBoolean(String key, boolean defaultValue) {
805 return defaultValue;
810 typeWarning(key, o, "Boolean", defaultValue, e);
811 return defaultValue;
828 * Returns the value associated with the given key, or defaultValue if
834 public Byte getByte(String key, byte defaultValue) {
838 return defaultValue;
843 typeWarning(key, o, "Byte", defaultValue, e);
844 return defaultValue;
867 public char getChar(String key, char defaultValue) {
871 return defaultValue;
876 typeWarning(key, o, "Character", defaultValue, e);
877 return defaultValue;
894 * Returns the value associated with the given key, or defaultValue if
900 public short getShort(String key, short defaultValue) {
904 return defaultValue;
909 typeWarning(key, o, "Short", defaultValue, e);
910 return defaultValue;
927 * Returns the value associated with the given key, or defaultValue if
933 public int getInt(String key, int defaultValue) {
937 return defaultValue;
942 typeWarning(key, o, "Integer", defaultValue, e);
943 return defaultValue;
960 * Returns the value associated with the given key, or defaultValue if
966 public long getLong(String key, long defaultValue) {
970 return defaultValue;
975 typeWarning(key, o, "Long", defaultValue, e);
976 return defaultValue;
993 * Returns the value associated with the given key, or defaultValue if
999 public float getFloat(String key, float defaultValue) {
1003 return defaultValue;
1008 typeWarning(key, o, "Float", defaultValue, e);
1009 return defaultValue;
1026 * Returns the value associated with the given key, or defaultValue if
1032 public double getDouble(String key, double defaultValue) {
1036 return defaultValue;
1041 typeWarning(key, o, "Double", defaultValue, e);
1042 return defaultValue;
1069 * Returns the value associated with the given key, or defaultValue if
1073 * @param defaultValue Value to return if key does not exist
1076 public String getString(String key, String defaultValue) {
1080 return defaultValue;
1086 return defaultValue;
1113 * Returns the value associated with the given key, or defaultValue if
1117 * @param defaultValue Value to return if key does not exist
1120 public CharSequence getCharSequence(String key, CharSequence defaultValue) {
1124 return defaultValue;
1130 return defaultValue;