org.apache.xmlrpc
Interface TypeFactory
- DefaultTypeFactory
public interface TypeFactory
Allows server developers to customize the type of Java objects
created for a corresponding XML-RPC type.
Object | createBase64(String s) - Create a local object for a <base64> tag.
|
Object | createBoolean(String s) - Create a local object for a <boolean> tag.
|
Object | createDate(String s) - Create a local object for a <dateTime.iso8601> tag.
|
Object | createDouble(String s) - Create a local object for a <double> tag.
|
Object | createInteger(String s) - Create a local object for an <int> or <i4> tag.
|
Object | createString(String s) - Create a local object for a <string> tag.
|
createBase64
public Object createBase64(String s)
Create a local object for a <base64> tag.
createBoolean
public Object createBoolean(String s)
Create a local object for a <boolean> tag.
createDate
public Object createDate(String s)
Create a local object for a <dateTime.iso8601> tag.
createDouble
public Object createDouble(String s)
Create a local object for a <double> tag.
createInteger
public Object createInteger(String s)
Create a local object for an <int> or <i4> tag.
createString
public Object createString(String s)
Create a local object for a <string> tag.
Copyright B) 1999-2002 Apache Software Foundation. All Rights Reserved.