Module eclipselink
Enum Class XmlMarshalNullRepresentation
java.lang.Object
java.lang.Enum<XmlMarshalNullRepresentation>
org.eclipse.persistence.oxm.annotations.XmlMarshalNullRepresentation
- All Implemented Interfaces:
Serializable,Comparable<XmlMarshalNullRepresentation>,Constable
This enumeration provides a means of specifying how a null value in a
java object should be marshalled to XML. The possible options are:
- XSI_NIL - This means that the element should be written out with an xsi:nil attribute.
Example:
<element xsi:nil="true"/>. - EMPTY_NODE - This indicates that the element should be written out to xml with no contents
Example:
<element />. - ABSENT_NODE - Absent node means that no element should be written to XML if null is encountered.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionNull element should not be written out.Null element should be written out to xml as an element with no contents.Null element should be written out as an element with an xsi:nil attribute. -
Method Summary
Modifier and TypeMethodDescriptionstatic XmlMarshalNullRepresentationvalue()static XmlMarshalNullRepresentationReturns the enum constant of this class with the specified name.static XmlMarshalNullRepresentation[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
XSI_NIL
Null element should be written out as an element with an xsi:nil attribute. -
ABSENT_NODE
Null element should not be written out. -
EMPTY_NODE
Null element should be written out to xml as an element with no contents.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
value
-
fromValue
-