Class NullValueHolder
- java.lang.Object
-
- de.uplanet.lucy.server.dataobjects.impl.NullValueHolder
-
- All Implemented Interfaces:
IValueHolder<Object>
public final class NullValueHolder extends Object implements IValueHolder<Object>
Convention: Normally you set a value-holder tonull
if you can't find the requestedattribute/field/...
. If you find something but the contents isnull
, then set the specific value-holders value (the object value) tonull
. When to use theNullValueHolder
isn't clear yet.
-
-
Field Summary
Fields Modifier and Type Field Description static NullValueHolder
INSTANCE
An instance of aNullValueHolder
ofxsd:anySimpleType
.
-
Constructor Summary
Constructors Constructor Description NullValueHolder(QName p_qnmType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCanonicalLexicalRepresentation()
Get the canonical lexical representation of this value according to it's datatype.Object
getRawValue()
Get the raw data that this value holder holds.QName
getType()
The type of data this value holder holds.Object
getValue()
Get the data that this value holder holds.boolean
hasValue()
Check if this value holder currently holds data or not.
-
-
-
Field Detail
-
INSTANCE
public static final NullValueHolder INSTANCE
An instance of aNullValueHolder
ofxsd:anySimpleType
.
-
-
Constructor Detail
-
NullValueHolder
public NullValueHolder(QName p_qnmType)
-
-
Method Detail
-
getValue
public Object getValue()
Description copied from interface:IValueHolder
Get the data that this value holder holds.Implementations MUST ensure that multiple calls to this method will return values that equal each other.
- Specified by:
getValue
in interfaceIValueHolder<Object>
- Returns:
null
.
-
getRawValue
public Object getRawValue()
Description copied from interface:IValueHolder
Get the raw data that this value holder holds.- Specified by:
getRawValue
in interfaceIValueHolder<Object>
- Returns:
null
.
-
getType
public QName getType()
Description copied from interface:IValueHolder
The type of data this value holder holds.- Specified by:
getType
in interfaceIValueHolder<Object>
- Returns:
- The type given at construction time, or
XSD_TYPE.ANYSIMPLETYPE
.
-
hasValue
public boolean hasValue()
Description copied from interface:IValueHolder
Check if this value holder currently holds data or not.- Specified by:
hasValue
in interfaceIValueHolder<Object>
- Returns:
- Always
false
.
-
getCanonicalLexicalRepresentation
public String getCanonicalLexicalRepresentation()
Description copied from interface:IValueHolder
Get the canonical lexical representation of this value according to it's datatype.- Specified by:
getCanonicalLexicalRepresentation
in interfaceIValueHolder<Object>
- Returns:
- Always
null
.
-
-