Package gnu.kawa.functions
Class LispFormat
- java.lang.Object
-
- java.text.Format
-
- gnu.kawa.format.ReportFormat
-
- gnu.kawa.format.CompoundFormat
-
- gnu.kawa.functions.LispFormat
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable
public class LispFormat extends gnu.kawa.format.CompoundFormatA representation of a parsed Common Lisp-style format.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringparamFromCountstatic java.lang.StringparamFromListstatic java.lang.StringparamUnspecified
-
Constructor Summary
Constructors Constructor Description LispFormat(char[] format)LispFormat(char[] format, int offset, int length)LispFormat(java.lang.String str)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.Object[]asArray(java.lang.Object arg)Convert sequence (or Object[]) to Object[].static intgetParam(java.util.Vector vec, int index)
-
-
-
Field Detail
-
paramFromList
public static final java.lang.String paramFromList
- See Also:
- Constant Field Values
-
paramFromCount
public static final java.lang.String paramFromCount
- See Also:
- Constant Field Values
-
paramUnspecified
public static final java.lang.String paramUnspecified
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
LispFormat
public LispFormat(char[] format, int offset, int length) throws java.text.ParseException- Throws:
java.text.ParseException
-
LispFormat
public LispFormat(java.lang.String str) throws java.text.ParseException- Throws:
java.text.ParseException
-
LispFormat
public LispFormat(char[] format) throws java.text.ParseException- Throws:
java.text.ParseException
-
-