Improved build.xml
[vimdoclet.git] / sample / java.util.IllegalFormatConversionException.txt
blob80541356106c258c29f398a45a6804ff1507c061
1 *java.util.IllegalFormatConversionException* *IllegalFormatConversionException* 
3 public class IllegalFormatConversionException
4   extends    |java.util.IllegalFormatException|
6 |java.util.IllegalFormatConversionException_Description|
7 |java.util.IllegalFormatConversionException_Fields|
8 |java.util.IllegalFormatConversionException_Constructors|
9 |java.util.IllegalFormatConversionException_Methods|
11 ================================================================================
13 *java.util.IllegalFormatConversionException_Constructors*
14 |java.util.IllegalFormatConversionException(char,Class)|Constructs an instance 
16 *java.util.IllegalFormatConversionException_Methods*
17 |java.util.IllegalFormatConversionException.getArgumentClass()|Returns the clas
18 |java.util.IllegalFormatConversionException.getConversion()|Returns the inappli
19 |java.util.IllegalFormatConversionException.getMessage()|
21 *java.util.IllegalFormatConversionException_Description*
23 Unchecked exception thrown when the argument corresponding to the format 
24 specifier is of an incompatible type. 
26 Unless otherwise specified, passing a null argument to any method or 
27 constructor in this class will cause a (|java.lang.NullPointerException|) to be 
28 thrown. 
31 *java.util.IllegalFormatConversionException(char,Class)*
33 public IllegalFormatConversionException(
34   char c,
35   java.lang.Class arg)
37 Constructs an instance of this class with the mismatched conversion and the 
38 corresponding argument class. 
40     c - Inapplicable conversion 
41     arg - Class of the mismatched argument 
43 *java.util.IllegalFormatConversionException.getArgumentClass()*
45 public |java.lang.Class| getArgumentClass()
47 Returns the class of the mismatched argument. 
50     Returns: The class of the mismatched argument 
51 *java.util.IllegalFormatConversionException.getConversion()*
53 public char getConversion()
55 Returns the inapplicable conversion. 
58     Returns: The inapplicable conversion 
59 *java.util.IllegalFormatConversionException.getMessage()*
61 public |java.lang.String| getMessage()