public class XMLUnMarshaller
extends java.lang.Object
This utility class offers methods to:
It supports various data types, including primitives (boolean, integer, long, double), strings, dates, and timestamps.
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
marshal(java.math.BigDecimal v)
Marshals a BigDecimal value to its XML representation.
|
static java.lang.String |
marshal(java.lang.Boolean v)
Marshals a boolean value to its XML representation.
|
static java.lang.String |
marshal(java.lang.Integer v)
Marshals an integer value to its XML representation.
|
static java.lang.String |
marshal(java.lang.Long v)
Marshals a long value to its XML representation.
|
static java.lang.String |
marshal(java.lang.Object v)
Marshals an object to its XML representation.
|
static java.lang.String |
marshal(java.lang.String v)
Marshals a string value to its XML representation.
|
static java.math.BigDecimal |
unmarshalBigDecimal(java.lang.String s)
Unmarshals a BigDecimal from its XML representation.
|
static java.lang.Boolean |
unmarshalBoolean(java.lang.String s)
Unmarshals a boolean from its XML representation.
|
static java.util.Date |
unmarshalDate(java.lang.String s)
Unmarshals a date from its XML representation, using the local time zone.
|
static java.util.Date |
unmarshalDate(java.lang.String s,
boolean useLocalTimeZone)
Unmarshals a date from its XML representation.
|
static java.lang.Integer |
unmarshalInteger(java.lang.String s)
Unmarshals an integer from its XML representation.
|
static java.lang.Long |
unmarshalLong(java.lang.String s)
Unmarshals a long from its XML representation.
|
static java.lang.String |
unmarshalString(java.lang.String s)
Unmarshals a string from its XML representation.
|
public static java.lang.String marshal(java.lang.String v)
v
- The string value to marshal.public static java.lang.String marshal(java.lang.Integer v)
v
- The integer value to marshal.public static java.lang.String marshal(java.lang.Long v)
v
- The long value to marshal.public static java.lang.String marshal(java.math.BigDecimal v)
v
- The BigDecimal value to marshal.public static java.lang.String marshal(java.lang.Object v)
v
- The object to marshal.public static java.lang.String marshal(java.lang.Boolean v)
v
- The boolean value to marshal.public static java.lang.String unmarshalString(java.lang.String s)
s
- The XML representation of the string.public static java.lang.Integer unmarshalInteger(java.lang.String s)
s
- The XML representation of the integer.public static java.lang.Long unmarshalLong(java.lang.String s)
s
- The XML representation of the long.public static java.math.BigDecimal unmarshalBigDecimal(java.lang.String s)
s
- The XML representation of the BigDecimal.public static java.lang.Boolean unmarshalBoolean(java.lang.String s)
s
- The XML representation of the boolean.public static java.util.Date unmarshalDate(java.lang.String s)
s
- The XML representation of the date.public static java.util.Date unmarshalDate(java.lang.String s, boolean useLocalTimeZone)
s
- The XML representation of the date.useLocalTimeZone
- If true, the local time zone is used for parsing; otherwise, UTC is used.Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.