Uses of Class
java.lang.IllegalArgumentException
| Package | Description |
|---|---|
| java.io | |
| java.lang | |
| java.lang.reflect | |
| java.net | |
| java.nio.channels | |
| java.nio.charset | |
| java.security |
Extensible cryptographic service provider infrastructure (SPI) for using
and defining services such as
Certificates,
Keys, KeyStores, MessageDigests, and Signatures. |
| java.sql | |
| java.util | |
| java.util.logging | |
| java.util.regex | |
| javax.net.ssl |
This package provides classes and interfaces needed to use the Secure
Sockets Layer (SSL) protocol and the successor Transport Layer
Security (TLS) protocol.
|
| javax.xml.parsers | |
| javax.xml.transform | |
| javax.xml.transform.sax | |
| org.apache.harmony.security.x509 | |
| org.apache.harmony.xml.parsers | |
| org.apache.http.conn |
The client-side connection management and handling API
at the heart of what is referred to as HttpConn.
|
| org.apache.http.conn.scheme | |
| org.apache.http.conn.ssl |
TLS/SSL specific parts of the HttpConn API.
|
| org.apache.xalan.processor |
Parses an XSLT stylesheet document (which may include and import other stylesheet documents) and produces a StylesheetRoot
(a TRaX Templates object).
|
| org.apache.xalan.transformer |
In charge of run-time transformations and the production of result trees.
|
| org.apache.xpath |
Implementation of XPath; for the most part, only classes meant for public use are
found at this root level of the XPath packages.
|
| org.apache.xpath.jaxp | |
| org.bouncycastle.asn1.cms | |
| org.bouncycastle.asn1.x509 | |
| org.bouncycastle.cms | |
| org.bouncycastle.crypto | |
| org.bouncycastle.crypto.modes | |
| org.bouncycastle.crypto.paddings | |
| org.bouncycastle.x509 | |
| org.conscrypt | |
| org.robovm.rt.bro | |
| org.xmlpull.v1 |
-
Uses of IllegalArgumentException in java.io
Methods in java.io that throw IllegalArgumentException Modifier and Type Method Description abstract booleanObjectInputStream.GetField. defaulted(String name)Indicates if the field identified bynameis defaulted.abstract booleanObjectInputStream.GetField. get(String name, boolean defaultValue)Gets the value of the boolean field identified bynamefrom the persistent field.abstract byteObjectInputStream.GetField. get(String name, byte defaultValue)Gets the value of the byte field identified bynamefrom the persistent field.abstract charObjectInputStream.GetField. get(String name, char defaultValue)Gets the value of the character field identified bynamefrom the persistent field.abstract doubleObjectInputStream.GetField. get(String name, double defaultValue)Gets the value of the double field identified bynamefrom the persistent field.abstract floatObjectInputStream.GetField. get(String name, float defaultValue)Gets the value of the float field identified bynamefrom the persistent field.abstract intObjectInputStream.GetField. get(String name, int defaultValue)Gets the value of the integer field identified bynamefrom the persistent field.abstract longObjectInputStream.GetField. get(String name, long defaultValue)Gets the value of the long field identified bynamefrom the persistent field.abstract shortObjectInputStream.GetField. get(String name, short defaultValue)Gets the value of the short field identified bynamefrom the persistent field.abstract ObjectObjectInputStream.GetField. get(String name, Object defaultValue)Gets the value of the object field identified bynamefrom the persistent field. -
Uses of IllegalArgumentException in java.lang
Subclasses of IllegalArgumentException in java.lang Modifier and Type Class Description classIllegalThreadStateExceptionThrown when an operation is attempted which is not possible given the state that the executing thread is in.classNumberFormatExceptionThrown when an invalid value is passed to a string-to-number conversion method.Methods in java.lang that throw IllegalArgumentException Modifier and Type Method Description protected PackageClassLoader. definePackage(String name, String specTitle, String specVersion, String specVendor, String implTitle, String implVersion, String implVendor, URL sealBase)Defines and returns a newPackageusing the specified information. -
Uses of IllegalArgumentException in java.lang.reflect
Methods in java.lang.reflect that throw IllegalArgumentException Modifier and Type Method Description static ObjectArray. get(Object array, int index)Returns the element of the array at the specified index.ObjectField. get(Object object)Returns the value of the field in the specified object.static booleanArray. getBoolean(Object array, int index)Returns the boolean at the given index in the given boolean array.booleanField. getBoolean(Object object)Returns the value of the field in the specified object as aboolean.static byteArray. getByte(Object array, int index)Returns the byte at the given index in the given byte array.byteField. getByte(Object object)Returns the value of the field in the specified object as abyte.static charArray. getChar(Object array, int index)Returns the char at the given index in the given char array.charField. getChar(Object object)Returns the value of the field in the specified object as achar.static doubleArray. getDouble(Object array, int index)Returns the double at the given index in the given array.doubleField. getDouble(Object object)Returns the value of the field in the specified object as adouble.static floatArray. getFloat(Object array, int index)Returns the float at the given index in the given array.floatField. getFloat(Object object)Returns the value of the field in the specified object as afloat.static intArray. getInt(Object array, int index)Returns the int at the given index in the given array.intField. getInt(Object object)Returns the value of the field in the specified object as anint.static InvocationHandlerProxy. getInvocationHandler(Object proxy)Returns the invocation handler of the specified proxy instance.static longArray. getLong(Object array, int index)Returns the long at the given index in the given array.longField. getLong(Object object)Returns the value of the field in the specified object as along.static Class<?>Proxy. getProxyClass(ClassLoader loader, Class<?>... interfaces)Returns the dynamically builtClassfor the specified interfaces.static shortArray. getShort(Object array, int index)Returns the short at the given index in the given array.shortField. getShort(Object object)Returns the value of the field in the specified object as ashort.ObjectMethod. invoke(Object receiver, Object... args)Returns the result of dynamically invoking this method.static ObjectArray. newInstance(Class<?> componentType, int... dimensions)Returns a new multidimensional array of the specified component type and dimensions.TConstructor. newInstance(Object... args)Returns a new instance of the declaring class, initialized by dynamically invoking the constructor represented by thisConstructorobject.static ObjectProxy. newProxyInstance(ClassLoader loader, Class<?>[] interfaces, InvocationHandler h)Returns an instance of the dynamically built class for the specified interfaces.static voidArray. set(Object array, int index, Object value)Sets the element of the array at the specified index to the value.voidField. set(Object object, Object value)Sets the value of the field in the specified object to the value.voidField. setBoolean(Object object, boolean value)Sets the value of the field in the specified object to thebooleanvalue.static voidArray. setByte(Object array, int index, byte value)Setsarray[index] = value.voidField. setByte(Object object, byte value)Sets the value of the field in the specified object to thebytevalue.static voidArray. setChar(Object array, int index, char value)Setsarray[index] = value.voidField. setChar(Object object, char value)Sets the value of the field in the specified object to thecharvalue.static voidArray. setDouble(Object array, int index, double value)Setsarray[index] = value.voidField. setDouble(Object object, double value)Sets the value of the field in the specified object to thedoublevalue.static voidArray. setFloat(Object array, int index, float value)Setsarray[index] = value.voidField. setFloat(Object object, float value)Sets the value of the field in the specified object to thefloatvalue.static voidArray. setInt(Object array, int index, int value)Setsarray[index] = value.voidField. setInt(Object object, int value)Set the value of the field in the specified object to theintvalue.static voidArray. setLong(Object array, int index, long value)Setsarray[index] = value.voidField. setLong(Object object, long value)Sets the value of the field in the specified object to thelongvalue.static voidArray. setShort(Object array, int index, short value)Setsarray[index] = value.voidField. setShort(Object object, short value)Sets the value of the field in the specified object to theshortvalue. -
Uses of IllegalArgumentException in java.net
Methods in java.net that throw IllegalArgumentException Modifier and Type Method Description protected PackageURLClassLoader. definePackage(String packageName, Manifest manifest, URL url)Defines a new package using the information extracted from the specified manifest. -
Uses of IllegalArgumentException in java.nio.channels
Subclasses of IllegalArgumentException in java.nio.channels Modifier and Type Class Description classIllegalSelectorExceptionAnIllegalSelectorExceptionis thrown when a call is made to register a channel on a selector that has been created by a different provider.classUnresolvedAddressExceptionAnUnresolvedAddressExceptionis thrown when trying to use an unresolved network address in a network operation.classUnsupportedAddressTypeExceptionAnUnsupportedAddressTypeExceptionis thrown when connecting or binding to an unsupported address type. -
Uses of IllegalArgumentException in java.nio.charset
Subclasses of IllegalArgumentException in java.nio.charset Modifier and Type Class Description classIllegalCharsetNameExceptionAnIllegalCharsetNameExceptionis thrown when an illegal charset name is encountered.classUnsupportedCharsetExceptionAnUnsupportedCharsetExceptionis thrown when an unsupported charset name is encountered.Methods in java.nio.charset that throw IllegalArgumentException Modifier and Type Method Description static CoderResultCoderResult. malformedForLength(int length)Gets aCoderResultobject indicating a malformed-input error.static CoderResultCoderResult. unmappableForLength(int length)Gets aCoderResultobject indicating an unmappable character error. -
Uses of IllegalArgumentException in java.security
Subclasses of IllegalArgumentException in java.security Modifier and Type Class Description classInvalidParameterExceptionInvalidParameterExceptionindicates exceptional conditions, caused by invalid parameters. -
Uses of IllegalArgumentException in java.sql
Methods in java.sql that throw IllegalArgumentException Modifier and Type Method Description voidTimestamp. setNanos(int n)Sets the nanosecond value for thisTimestamp.static TimestampTimestamp. valueOf(String s)Creates aTimestampobject with a time value equal to the time specified by a supplied String holding the time in JDBC timestamp escape format, which is"yyyy-MM-dd HH:mm:ss.nnnnnnnnn"Constructors in java.sql that throw IllegalArgumentException Constructor Description Timestamp(int theYear, int theMonth, int theDate, int theHour, int theMinute, int theSecond, int theNano)Deprecated. -
Uses of IllegalArgumentException in java.util
Subclasses of IllegalArgumentException in java.util Modifier and Type Class Description classDuplicateFormatFlagsExceptionThe unchecked exception will be thrown out if there are duplicate flags given out in the format specifier.classFormatFlagsConversionMismatchExceptionAFormatFlagsConversionMismatchExceptionwill be thrown if a conversion and the flags are incompatible.classIllegalFormatCodePointExceptionAnIllegalFormatCodePointExceptionwill be thrown if an invalid Unicode code point (defined byCharacter.isValidCodePoint(int)) is passed as a parameter to a Formatter.classIllegalFormatConversionExceptionAnIllegalFormatConversionExceptionwill be thrown when the parameter is incompatible with the corresponding format specifier.classIllegalFormatExceptionAnIllegalFormatExceptionis thrown when a format string that contains either an illegal syntax or format specifier is transferred as a parameter.classIllegalFormatFlagsExceptionAnIllegalFormatFlagsExceptionwill be thrown if the combination of the format flags is illegal.classIllegalFormatPrecisionExceptionAnIllegalFormatPrecisionExceptionwill be thrown if the precision is a negative other than -1 or in other cases where precision is not supported.classIllegalFormatWidthExceptionAnIllegalFormatWidthExceptionwill be thrown if the width is a negative value other than -1 or in other cases where a width is not supported.classMissingFormatArgumentExceptionAMissingFormatArgumentExceptionwill be thrown if there is no corresponding argument with the specified conversion or an argument index that refers to a missing argument.classMissingFormatWidthExceptionAMissingFormatWidthExceptionwill be thrown if the format width is missing but is required.classUnknownFormatConversionExceptionAnUnknownFormatConversionExceptionwill be thrown if the format conversion is unknown.classUnknownFormatFlagsExceptionAnUnknownFormatFlagsExceptionwill be thrown if there is an unknown flag. -
Uses of IllegalArgumentException in java.util.logging
Methods in java.util.logging that throw IllegalArgumentException Modifier and Type Method Description static LevelLevel. parse(String name)Parses a level name into aLevelobject. -
Uses of IllegalArgumentException in java.util.regex
Subclasses of IllegalArgumentException in java.util.regex Modifier and Type Class Description classPatternSyntaxExceptionEncapsulates a syntax error that occurred during the compilation of aPattern. -
Uses of IllegalArgumentException in javax.net.ssl
Methods in javax.net.ssl that throw IllegalArgumentException Modifier and Type Method Description voidSSLSessionContext. setSessionCacheSize(int size)Sets the size of the session cache for this session context.voidSSLSessionContext. setSessionTimeout(int seconds)Sets the timeout for sessions in this context. -
Uses of IllegalArgumentException in javax.xml.parsers
Methods in javax.xml.parsers that throw IllegalArgumentException Modifier and Type Method Description abstract ObjectDocumentBuilderFactory. getAttribute(String name)Allows the user to retrieve specific attributes on the underlying implementation.abstract voidDocumentBuilderFactory. setAttribute(String name, Object value)Allows the user to set specific attributes on the underlying implementation. -
Uses of IllegalArgumentException in javax.xml.transform
Methods in javax.xml.transform that throw IllegalArgumentException Modifier and Type Method Description abstract StringTransformer. getOutputProperty(String name)Get an output property that is in effect for the transformer.abstract voidTransformer. setErrorListener(ErrorListener listener)Set the error event listener in effect for the transformation.abstract voidTransformer. setOutputProperty(String name, String value)Set an output property that will be in effect for the transformation. -
Uses of IllegalArgumentException in javax.xml.transform.sax
Methods in javax.xml.transform.sax that throw IllegalArgumentException Modifier and Type Method Description voidTransformerHandler. setResult(Result result)Set theResultassociated with thisTransformerHandlerto be used for the transformation. -
Uses of IllegalArgumentException in org.apache.harmony.security.x509
Constructors in org.apache.harmony.security.x509 that throw IllegalArgumentException Constructor Description GeneralName(byte[] name)Constructor for type [7] iPAddress. -
Uses of IllegalArgumentException in org.apache.harmony.xml.parsers
Methods in org.apache.harmony.xml.parsers that throw IllegalArgumentException Modifier and Type Method Description ObjectDocumentBuilderFactoryImpl. getAttribute(String name)voidDocumentBuilderFactoryImpl. setAttribute(String name, Object value) -
Uses of IllegalArgumentException in org.apache.http.conn
Methods in org.apache.http.conn that throw IllegalArgumentException Modifier and Type Method Description booleanMultihomePlainSocketFactory. isSecure(Socket sock)Checks whether a socket connection is secure. -
Uses of IllegalArgumentException in org.apache.http.conn.scheme
Methods in org.apache.http.conn.scheme that throw IllegalArgumentException Modifier and Type Method Description booleanPlainSocketFactory. isSecure(Socket sock)Checks whether a socket connection is secure.booleanSocketFactory. isSecure(Socket sock)Checks whether a socket provides a secure connection. -
Uses of IllegalArgumentException in org.apache.http.conn.ssl
Methods in org.apache.http.conn.ssl that throw IllegalArgumentException Modifier and Type Method Description booleanSSLSocketFactory. isSecure(Socket sock)Checks whether a socket connection is secure. -
Uses of IllegalArgumentException in org.apache.xalan.processor
Methods in org.apache.xalan.processor that throw IllegalArgumentException Modifier and Type Method Description ObjectTransformerFactoryImpl. getAttribute(String name)Allows the user to retrieve specific attributes on the underlying implementation.voidTransformerFactoryImpl. setAttribute(String name, Object value)Allows the user to set specific attributes on the underlying implementation.voidTransformerFactoryImpl. setErrorListener(ErrorListener listener)Set an error listener for the TransformerFactory. -
Uses of IllegalArgumentException in org.apache.xalan.transformer
Methods in org.apache.xalan.transformer that throw IllegalArgumentException Modifier and Type Method Description StringTransformerIdentityImpl. getOutputProperty(String name)Get an output property that is in effect for the transformation.StringTransformerImpl. getOutputProperty(String qnameString)Get an output property that is in effect for the transformation.StringTransformerImpl. getOutputPropertyNoDefault(String qnameString)Get the value of a property, without using the default properties.voidTransformerIdentityImpl. setErrorListener(ErrorListener listener)Set the error event listener in effect for the transformation.voidTransformerImpl. setErrorListener(ErrorListener listener)Set the error event listener.voidTransformerIdentityImpl. setOutputProperties(Properties oformat)Set the output properties for the transformation.voidTransformerImpl. setOutputProperties(Properties oformat)Set the output properties for the transformation.voidTransformerIdentityImpl. setOutputProperty(String name, String value)Set an output property that will be in effect for the transformation.voidTransformerImpl. setOutputProperty(String name, String value)This method is used to set or override the value of the effective xsl:output attribute values specified in the stylesheet.voidTransformerHandlerImpl. setResult(Result result)Enables the user of the TransformerHandler to set the to set the Result for the transformation.voidTransformerIdentityImpl. setResult(Result result)Enables the user of the TransformerHandler to set the to set the Result for the transformation. -
Uses of IllegalArgumentException in org.apache.xpath
Methods in org.apache.xpath that throw IllegalArgumentException Modifier and Type Method Description voidXPathContext. setErrorListener(ErrorListener listener)Set the ErrorListener where errors and warnings are to be reported. -
Uses of IllegalArgumentException in org.apache.xpath.jaxp
Methods in org.apache.xpath.jaxp that throw IllegalArgumentException Modifier and Type Method Description XObjectJAXPVariableStack. getVariableOrParam(XPathContext xctxt, QName qname) -
Uses of IllegalArgumentException in org.bouncycastle.asn1.cms
Methods in org.bouncycastle.asn1.cms that throw IllegalArgumentException Modifier and Type Method Description static SignerInfoSignerInfo. getInstance(Object o) -
Uses of IllegalArgumentException in org.bouncycastle.asn1.x509
Methods in org.bouncycastle.asn1.x509 that throw IllegalArgumentException Modifier and Type Method Description static ASN1PrimitiveX509Extension. convertValueToObject(X509Extension ext)Convert the value of the passed in extension to an object -
Uses of IllegalArgumentException in org.bouncycastle.cms
Methods in org.bouncycastle.cms that throw IllegalArgumentException Modifier and Type Method Description voidCMSSignedDataGenerator. addSigner(PrivateKey key, byte[] subjectKeyID, String digestOID)Deprecated.use addSignerInfoGeneratorvoidCMSSignedDataGenerator. addSigner(PrivateKey key, byte[] subjectKeyID, String encryptionOID, String digestOID)Deprecated.use addSignerInfoGeneratorvoidCMSSignedDataGenerator. addSigner(PrivateKey key, byte[] subjectKeyID, String encryptionOID, String digestOID, AttributeTable signedAttr, AttributeTable unsignedAttr)Deprecated.use addSignerInfoGeneratorvoidCMSSignedDataGenerator. addSigner(PrivateKey key, byte[] subjectKeyID, String encryptionOID, String digestOID, CMSAttributeTableGenerator signedAttrGen, CMSAttributeTableGenerator unsignedAttrGen)Deprecated.use addSignerInfoGeneratorvoidCMSSignedDataGenerator. addSigner(PrivateKey key, byte[] subjectKeyID, String digestOID, AttributeTable signedAttr, AttributeTable unsignedAttr)Deprecated.use addSignerInfoGeneratorvoidCMSSignedDataGenerator. addSigner(PrivateKey key, byte[] subjectKeyID, String digestOID, CMSAttributeTableGenerator signedAttrGen, CMSAttributeTableGenerator unsignedAttrGen)Deprecated.use addSignerInfoGeneratorvoidCMSSignedDataGenerator. addSigner(PrivateKey key, X509Certificate cert, String digestOID)Deprecated.use addSignerInfoGeneratorvoidCMSSignedDataGenerator. addSigner(PrivateKey key, X509Certificate cert, String encryptionOID, String digestOID)Deprecated.use addSignerInfoGeneratorvoidCMSSignedDataGenerator. addSigner(PrivateKey key, X509Certificate cert, String encryptionOID, String digestOID, AttributeTable signedAttr, AttributeTable unsignedAttr)Deprecated.use addSignerInfoGeneratorvoidCMSSignedDataGenerator. addSigner(PrivateKey key, X509Certificate cert, String encryptionOID, String digestOID, CMSAttributeTableGenerator signedAttrGen, CMSAttributeTableGenerator unsignedAttrGen)Deprecated.use addSignerInfoGeneratorvoidCMSSignedDataGenerator. addSigner(PrivateKey key, X509Certificate cert, String digestOID, AttributeTable signedAttr, AttributeTable unsignedAttr)Deprecated.use addSignerInfoGeneratorvoidCMSSignedDataGenerator. addSigner(PrivateKey key, X509Certificate cert, String digestOID, CMSAttributeTableGenerator signedAttrGen, CMSAttributeTableGenerator unsignedAttrGen)Deprecated.use addSignerInfoGenerator -
Uses of IllegalArgumentException in org.bouncycastle.crypto
Methods in org.bouncycastle.crypto that throw IllegalArgumentException Modifier and Type Method Description intDerivationFunction. generateBytes(byte[] out, int outOff, int len)voidBlockCipher. init(boolean forEncryption, CipherParameters params)Initialise the cipher.voidBufferedBlockCipher. init(boolean forEncryption, CipherParameters params)initialise the cipher.voidMac. init(CipherParameters params)Initialise the MAC.voidStreamCipher. init(boolean forEncryption, CipherParameters params)Initialise the cipher. -
Uses of IllegalArgumentException in org.bouncycastle.crypto.modes
Methods in org.bouncycastle.crypto.modes that throw IllegalArgumentException Modifier and Type Method Description voidAEADBlockCipher. init(boolean forEncryption, CipherParameters params)initialise the underlying cipher.voidCBCBlockCipher. init(boolean encrypting, CipherParameters params)Initialise the cipher and, possibly, the initialisation vector (IV).voidCCMBlockCipher. init(boolean forEncryption, CipherParameters params)voidCFBBlockCipher. init(boolean encrypting, CipherParameters params)Initialise the cipher and, possibly, the initialisation vector (IV).voidGCMBlockCipher. init(boolean forEncryption, CipherParameters params)voidOFBBlockCipher. init(boolean encrypting, CipherParameters params)Initialise the cipher and, possibly, the initialisation vector (IV).voidSICBlockCipher. init(boolean forEncryption, CipherParameters params) -
Uses of IllegalArgumentException in org.bouncycastle.crypto.paddings
Methods in org.bouncycastle.crypto.paddings that throw IllegalArgumentException Modifier and Type Method Description voidBlockCipherPadding. init(SecureRandom random)Initialise the padder.voidISO10126d2Padding. init(SecureRandom random)Initialise the padder.voidISO7816d4Padding. init(SecureRandom random)Initialise the padder.voidPaddedBufferedBlockCipher. init(boolean forEncryption, CipherParameters params)initialise the cipher.voidPKCS7Padding. init(SecureRandom random)Initialise the padder.voidTBCPadding. init(SecureRandom random)Initialise the padder.voidX923Padding. init(SecureRandom random)Initialise the padder.voidZeroBytePadding. init(SecureRandom random)Initialise the padder. -
Uses of IllegalArgumentException in org.bouncycastle.x509
Methods in org.bouncycastle.x509 that throw IllegalArgumentException Modifier and Type Method Description voidX509V3CertificateGenerator. setPublicKey(PublicKey key)Deprecated. -
Uses of IllegalArgumentException in org.conscrypt
Methods in org.conscrypt that throw IllegalArgumentException Modifier and Type Method Description static OpenSSLEngineOpenSSLEngine. getInstance(String engine) -
Uses of IllegalArgumentException in org.robovm.rt.bro
Subclasses of IllegalArgumentException in org.robovm.rt.bro Modifier and Type Class Description classEnumConstantMissingExceptionException to be thrown byValuedEnumin case it is not able marshal native to enum due missing value in enum -
Uses of IllegalArgumentException in org.xmlpull.v1
Methods in org.xmlpull.v1 that throw IllegalArgumentException Modifier and Type Method Description XmlSerializerXmlSerializer. attribute(String namespace, String name, String value)Write an attribute.voidXmlSerializer. cdsect(String text)voidXmlSerializer. comment(String text)voidXmlSerializer. docdecl(String text)voidXmlSerializer. endDocument()Finish writing.XmlSerializerXmlSerializer. endTag(String namespace, String name)Write end tag.voidXmlSerializer. entityRef(String text)StringXmlSerializer. getPrefix(String namespace, boolean generatePrefix)Return namespace that corresponds to given prefix If there is no prefix bound to this namespace return null but if generatePrefix is false then return generated prefix.voidXmlSerializer. ignorableWhitespace(String text)voidXmlSerializer. processingInstruction(String text)voidXmlSerializer. setFeature(String name, boolean state)Set feature identified by name (recommended to be URI for uniqueness).voidXmlSerializer. setOutput(OutputStream os, String encoding)Set to use binary output stream with given encoding.voidXmlSerializer. setOutput(Writer writer)Set the output to the given writer.voidXmlSerializer. setPrefix(String prefix, String namespace)Binds the given prefix to the given namespace.voidXmlSerializer. setProperty(String name, Object value)Set the value of a property.voidXmlSerializer. startDocument(String encoding, Boolean standalone)Write <?xml declaration with encoding (if encoding not null) and standalone flag (if standalone not null) This method can only be called just after setOutput.XmlSerializerXmlSerializer. startTag(String namespace, String name)Writes a start tag with the given namespace and name.XmlSerializerXmlSerializer. text(char[] buf, int start, int len)Writes text, where special XML chars are escaped automaticallyXmlSerializerXmlSerializer. text(String text)Writes text, where special XML chars are escaped automatically
Timestamp(long)instead.