Click or drag to resize

SimpleValue Class

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
A simple implementation of the IXmlValue interface.
Inheritance Hierarchy

Namespace:  Tangosol.Run.Xml
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public class SimpleValue : IXmlValue, 
	ICloneable, IPortableObject

The SimpleValue type exposes the following members.

Constructors
  NameDescription
Public methodSimpleValue
Construct an empty SimpleValue.
Public methodSimpleValue(Object)
Construct a SimpleValue.
Public methodSimpleValue(Object, Boolean)
Construct a SimpleValue.
Public methodSimpleValue(Object, Boolean, Boolean)
Construct a SimpleValue.
Top
Properties
  NameDescription
Protected propertyInternalValue
Get or set the internal value of this IXmlValue.
Public propertyIsAttribute
Determine if this value is an element attribute.
Public propertyIsContent
Determine if this value is an element's content.
Public propertyIsEmpty
Determine if the value is empty.
Public propertyIsMutable
Determine if this value can be modified.
Public propertyParent
Get or set the parent element of this value.
Public propertyValue
Get the value as an object.
Top
Methods
  NameDescription
Public methodClone
Creates and returns a copy of this SimpleValue.
Protected methodConvert
Convert the passed object to the specified type.
Protected methodEnsureType
Change the type of the internal representation of the IXmlValue.
Public methodEquals
Compare this XML value with another XML value for equality.
(Overrides ObjectEquals(Object).)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetBinary
Get the value as Binary.
Public methodGetBinary(Binary)
Get the value as Binary.
Public methodGetBoolean
Get the value as a boolean.
Public methodGetBoolean(Boolean)
Get the value as a boolean.
Public methodGetDateTime
Get the value as a DateTime.
Public methodGetDateTime(DateTime)
Get the value as a DateTime.
Public methodGetDecimal
Get the value as a decimal.
Public methodGetDecimal(Decimal)
Get the value as a Decimal.
Public methodGetDouble
Get the value as a double.
Public methodGetDouble(Double)
Get the value as a double.
Public methodGetHashCode
Provide a hash value for this XML value.
(Overrides ObjectGetHashCode.)
Public methodGetInt
Get the value as an int.
Public methodGetInt(Int32)
Get the value as an int.
Public methodGetLong
Get the value as a long.
Public methodGetLong(Int64)
Get the value as a long.
Public methodGetString
Get the value as a string.
Public methodGetString(String)
Get the value as a string.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodReadExternal
Restore the contents of a user type instance by reading its state using the specified IPofReader object.
Public methodSetBinary
Set the Binary value.
Public methodSetBoolean
Set the boolean value.
Public methodSetDateTime
Set the value as a DateTime.
Public methodSetDecimal
Set the decimal value.
Public methodSetDouble
Set the double value.
Public methodSetInt
Set the int value.
Public methodSetLong
Set the long value.
Public methodSetString
Set the string value.
Public methodToString
Format the XML value into a string in a display format.
(Overrides ObjectToString.)
Public methodWriteExternal
Save the contents of a POF user type instance by writing its state using the specified IPofWriter object.
Public methodWriteValue
Write the value as it will appear in XML.
Top
Remarks
Protected methods are provided to support inheriting classes.
See Also