Searched refs:stringToValue (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/test/javax/management/openmbean/
H A DTabularDataOrderTest.java65 private static final Map<String, Integer> stringToValue = field in class:TabularDataOrderTest
69 stringToValue.put(intNames[i], i + 1);
78 return stringToValue;
101 for (Map.Entry<String, Integer> entry : stringToValue.entrySet()) {
175 List<String> origNames = new ArrayList<String>(stringToValue.keySet());
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DNumberFormatter.java64 * <code>stringToValue</code> than that of its superclass. If you have
157 Object stringToValue(String text, Format f) throws ParseException { method in class:NumberFormatter
402 Object value = stringToValue(getFormattedTextField().getText());
464 return stringToValue(string);
H A DMaskFormatter.java331 * true <code>stringToValue</code> will return
334 * <code>stringToValue</code> will return <code>'4155551212'</code>.
337 * mask should be returned in stringToValue
345 * Returns true if <code>stringToValue</code> should return literal
349 * stringToValue
358 * necessary and invokes supers <code>stringToValue</code>, so that if
370 public Object stringToValue(String value) throws ParseException { method in class:MaskFormatter
371 return stringToValue(value, true);
427 // valueToString doesn't throw, but stringToValue does, need to
433 stringToValue(valueToStrin
446 private Object stringToValue(String value, boolean completeMatch) throws method in class:MaskFormatter
[all...]
H A DInternationalFormatter.java44 * for this to work the values returned from <code>stringToValue</code> must be
65 * <code>stringToValue</code> is slightly different than that of
77 * <code>InternationalFormatter</code> implements <code>stringToValue</code>
319 public Object stringToValue(String text) throws ParseException { method in class:InternationalFormatter
320 Object value = stringToValue(text, getFormat());
326 value = super.stringToValue(value.toString());
398 Object stringToValue(String text, Format f) throws ParseException { method in class:InternationalFormatter
522 Object value = stringToValue(string);
1030 Object value = stringToValue(
H A DDefaultFormatter.java41 * <code>stringToValue</code>.
178 * for a length of time (that is, <code>stringToValue</code> throws
206 * stringToValue
215 * @return Class used to constuct return value from stringToValue
235 public Object stringToValue(String string) throws ParseException { method in class:DefaultFormatter
407 rh.value = stringToValue(newString);
447 value = stringToValue(string);
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DValueFormatter.java86 public Object stringToValue(String text) throws ParseException { method in class:ValueFormatter
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJFormattedTextField.java91 * formatter.stringToValue(text);
131 * is thrown from <code>stringToValue</code>, the
530 setValue(format.stringToValue(getText()), false, true);
895 * <code>stringToValue</code> and <code>valueToString</code>. Optionally
983 public abstract Object stringToValue(String text) throws method in class:JFormattedTextField.AbstractFormatter
H A DJSpinner.java1320 public Object stringToValue(String string) throws ParseException { method in class:JSpinner.ListEditor.ListFormatter

Completed in 52 milliseconds