|
ModeShape Distribution 3.0.0.Beta4 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.modeshape.jcr.value.basic.AbstractValueFactory<Object>
org.modeshape.jcr.value.basic.ObjectValueFactory
@Immutable public class ObjectValueFactory
The standard ValueFactory
for PropertyType.OBJECT
values.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class org.modeshape.jcr.value.basic.AbstractValueFactory |
---|
AbstractValueFactory.ConvertingIterator<ValueType> |
Field Summary |
---|
Fields inherited from interface org.modeshape.jcr.value.ValueFactory |
---|
DEFAULT_DECODER, DEFAULT_ENCODER |
Constructor Summary | |
---|---|
ObjectValueFactory(TextDecoder decoder,
ValueFactory<String> stringValueFactory,
ValueFactory<BinaryValue> binaryValueFactory)
|
Method Summary | |
---|---|
Object |
create(BigDecimal value)
Create a value from a decimal. |
Object |
create(BinaryValue value)
Create a value from the binary content given by the supplied stream. |
Object |
create(boolean value)
Create a boolean from a string. |
Object |
create(byte[] value)
Create a value from the binary content given by the supplied array. |
Object |
create(Calendar value)
Create a value from a Calendar instance. |
Object |
create(Date value)
Create a value from a date. |
Object |
create(DateTime value)
Create a value from a date-time instant. |
Object |
create(double value)
Create a value from a double. |
Object |
create(float value)
Create a value from a float. |
Object |
create(InputStream stream)
Create a value from the binary content given by the supplied stream. |
Object |
create(int value)
Create a value from an integer. |
Object |
create(long value)
Create a long from a string. |
Object |
create(Name value)
Create a value from a name. |
Object |
create(NodeKey value)
Create a value from a NodeKey . |
Object |
create(Object value)
Create a value from the specified information by determining which other create method applies and delegating
to that method. |
Object[] |
create(Object[] values)
Create an array of values from the specified information by determining which other create method applies for
each object and then delegating to that method. |
Object |
create(Path.Segment value)
Create a value from a path segment. |
Object |
create(Path value)
Create a value from a path. |
Object |
create(Reference value)
Create a value from a reference. |
Object |
create(String value)
Create a value from a string, using no decoding. |
Object |
create(String value,
TextDecoder decoder)
Create a value from a string, using the supplied decoder. |
Object |
create(URI value)
Create a value from a URI. |
Object |
create(UUID value)
Create a value from a UUID. |
protected Object[] |
createEmptyArray(int length)
|
protected ValueFactory<BinaryValue> |
getBinaryValueFactory()
|
Methods inherited from class org.modeshape.jcr.value.basic.AbstractValueFactory |
---|
create, create, create, create, create, create, create, create, create, create, create, create, create, create, create, create, create, create, create, create, create, getDecoder, getDecoder, getPropertyType, getStringValueFactory |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ObjectValueFactory(TextDecoder decoder, ValueFactory<String> stringValueFactory, ValueFactory<BinaryValue> binaryValueFactory)
Method Detail |
---|
protected ValueFactory<BinaryValue> getBinaryValueFactory()
public Object create(String value)
ValueFactory
value
- the string from which the value is to be created
ValueFactory.create(String, TextDecoder)
public Object create(String value, TextDecoder decoder)
ValueFactory
value
- the string from which the value is to be createddecoder
- the decoder that should be used; if null, the default decoder
is used
ValueFactory.create(String)
public Object create(int value)
ValueFactory
value
- the integer from which the value is to be created
public Object create(long value)
ValueFactory
value
- the string from which the long is to be created
public Object create(boolean value)
ValueFactory
value
- the boolean from which the value is to be created
public Object create(float value)
ValueFactory
value
- the float from which the value is to be created
public Object create(double value)
ValueFactory
value
- the double from which the value is to be created
public Object create(BigDecimal value)
ValueFactory
value
- the decimal from which the value is to be created
public Object create(Calendar value)
ValueFactory
value
- the Calendar instance from which the value is to be created
public Object create(Date value)
ValueFactory
value
- the date from which the value is to be created
public Object create(DateTime value)
ValueFactory
value
- the date-time instant from which the value is to be created
public Object create(Name value)
ValueFactory
value
- the name from which the value is to be created
public Object create(Path value)
ValueFactory
value
- the path from which the value is to be created
public Object create(Path.Segment value)
ValueFactory
value
- the path segment from which the value is to be created
public Object create(Reference value)
ValueFactory
value
- the reference from which the value is to be created
public Object create(URI value)
ValueFactory
value
- the URI from which the value is to be created
public Object create(UUID value)
ValueFactory
value
- the UUID from which the value is to be created
public Object create(NodeKey value) throws ValueFormatException
ValueFactory
NodeKey
.
value
- the node key from which the value is to be created
ValueFormatException
- if the conversion from a NodeKey could not be performedpublic Object create(Object value)
ValueFactory
create
method applies and delegating
to that method. Note that this method only will call create
methods that take a single parameter; so this
excludes ValueFactory.create(InputStream)
and ValueFactory.create(String, TextDecoder)
.
create
in interface ValueFactory<Object>
create
in class AbstractValueFactory<Object>
value
- the value
public Object[] create(Object[] values)
ValueFactory
create
method applies for
each object and then delegating to that method. Note that this method will not consider ValueFactory.create(InputStream)
and
ValueFactory.create(String, TextDecoder)
.
create
in interface ValueFactory<Object>
create
in class AbstractValueFactory<Object>
values
- the values
public Object create(byte[] value)
ValueFactory
value
- the content to be used to create the value
public Object create(BinaryValue value) throws ValueFormatException, IoException
ValueFactory
value
- the binary object to be used to create the value
ValueFormatException
- if the conversion from the binary object could not be performed
IoException
- If an unexpected problem occurs while accessing the supplied binary value (such as an
IOException
).public Object create(InputStream stream)
ValueFactory
stream
- the stream containing the content to be used to create the value
protected Object[] createEmptyArray(int length)
createEmptyArray
in class AbstractValueFactory<Object>
|
ModeShape Distribution 3.0.0.Beta4 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |