Uses of Class
java.text.ParseException
-
Packages that use ParseException 软件包 描述 java.text 提供用于以独立于自然语言的方式处理文本,日期,数字和消息的类和接口。javax.swing 提供一套“轻量级”(全Java语言)组件,尽可能地在所有平台上工作。javax.swing.plaf.synth 合成是一种可以让所有绘画委托的外观和感觉。javax.swing.text 提供处理可编辑和不可编辑文本组件的类和接口。 -
-
Uses of ParseException in java.text
Methods in java.text that throw ParseException Modifier and Type 方法 描述 Date
DateFormat. parse(String source)
从给定字符串的开始解析文本以生成日期。Object[]
MessageFormat. parse(String source)
从给定字符串的开头解析文本以产生一个对象数组。Number
NumberFormat. parse(String source)
从给定字符串的开头解析文本以产生一个数字。Object
Format. parseObject(String source)
从给定字符串的开头解析文本以产生一个对象。Constructors in java.text that throw ParseException Constructor 描述 RuleBasedCollator(String rules)
RuleBasedCollator构造函数。 -
Uses of ParseException in javax.swing
Methods in javax.swing that throw ParseException Modifier and Type 方法 描述 void
JFormattedTextField. commitEdit()
强制从AbstractFormatter
的当前值并设置为当前值。void
JSpinner. commitEdit()
将当前编辑的值提交到SpinnerModel
。void
JSpinner.DefaultEditor. commitEdit()
将当前编辑的值推送到SpinnerModel
。abstract Object
JFormattedTextField.AbstractFormatter. stringToValue(String text)
解析text
返回任意的对象。abstract String
JFormattedTextField.AbstractFormatter. valueToString(Object value)
返回要显示value
的字符串值。 -
Uses of ParseException in javax.swing.plaf.synth
Methods in javax.swing.plaf.synth that throw ParseException Modifier and Type 方法 描述 void
SynthLookAndFeel. load(InputStream input, Class<?> resourceBase)
加载SynthStyle
s将由此SynthLookAndFeel
使用的SynthLookAndFeel
。void
SynthLookAndFeel. load(URL url)
加载组SynthStyle
将由本使用的SSynthLookAndFeel
。 -
Uses of ParseException in javax.swing.text
Methods in javax.swing.text that throw ParseException Modifier and Type 方法 描述 void
MaskFormatter. setMask(String mask)
设置掩码规定合法字符。Object
DefaultFormatter. stringToValue(String string)
通过使用String参数的构造函数将String中的传递转换为getValueClass
的实例。Object
InternationalFormatter. stringToValue(String text)
返回Object
的表示String
text
。Object
MaskFormatter. stringToValue(String value)
解析文本,返回字符串value
的相应对象表示value
。String
DefaultFormatter. valueToString(Object value)
通过toString
方法将Object中传入的对象转换为字符串。String
InternationalFormatter. valueToString(Object value)
返回对象value
的字符串表示value
。String
MaskFormatter. valueToString(Object value)
基于掩码返回对象value
的字符串表示形式。Constructors in javax.swing.text that throw ParseException Constructor 描述 MaskFormatter(String mask)
使用指定的掩码创建一个MaskFormatter
。
-