@Immutable public class ReferenceValueFactory extends AbstractValueFactory<Reference> implements ReferenceFactory
ValueFactory
for PropertyType.REFERENCE
values.AbstractValueFactory.ConvertingIterator<ValueType>
Modifier and Type | Field and Description |
---|---|
protected boolean |
simple |
protected boolean |
weak |
decoder, propertyType, valueFactories
DEFAULT_DECODER, DEFAULT_ENCODER
Modifier | Constructor and Description |
---|---|
protected |
ReferenceValueFactory(PropertyType type,
TextDecoder decoder,
ValueFactories valueFactories,
boolean weak,
boolean simple) |
Modifier and Type | Method and Description |
---|---|
Reference |
create(BigDecimal value)
Create a value from a decimal.
|
Reference |
create(BinaryValue value)
Create a value from the binary content given by the supplied stream.
|
Reference |
create(boolean value)
Create a boolean from a string.
|
Reference |
create(byte[] value)
Create a value from the binary content given by the supplied array.
|
Reference |
create(Calendar value)
Create a value from a Calendar instance.
|
Reference |
create(Date value)
Create a value from a date.
|
Reference |
create(DateTime value)
Create a value from a date-time instant.
|
Reference |
create(double value)
Create a value from a double.
|
Reference |
create(float value)
Create a value from a float.
|
Reference |
create(InputStream stream)
Create a value from the binary content given by the supplied stream.
|
Reference |
create(int value)
Create a value from an integer.
|
Reference |
create(long value)
Create a long from a string.
|
Reference |
create(Name value)
Create a value from a name.
|
Reference |
create(NodeKey value)
Create a value from a
NodeKey . |
Reference[] |
create(NodeKey[] values,
boolean foreign) |
Reference |
create(NodeKey value,
boolean foreign) |
Reference |
create(Path.Segment value)
Create a value from a path segment.
|
Reference |
create(Path value)
Create a value from a path.
|
Reference |
create(Reference value)
Create a value from a reference.
|
Reference |
create(String value)
Create a value from a string, using no decoding.
|
Reference |
create(String value,
TextDecoder decoder)
Create a value from a string, using the supplied decoder.
|
Reference |
create(URI value)
Create a value from a URI.
|
Reference |
create(UUID value)
Create a value from a UUID.
|
Reference[] |
createEmptyArray(int length)
Creates an empty array of the given type.
|
static ReferenceValueFactory |
newInstance(TextDecoder decoder,
ValueFactories factories,
boolean weak,
boolean simple)
Create a new instance.
|
ReferenceFactory |
with(ValueFactories valueFactories)
Return a potentially new copy of this factory that uses the supplied ValueFactories object.
|
create, create, create, 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
protected ReferenceValueFactory(PropertyType type, TextDecoder decoder, ValueFactories valueFactories, boolean weak, boolean simple)
public static ReferenceValueFactory newInstance(TextDecoder decoder, ValueFactories factories, boolean weak, boolean simple)
decoder
- the text decoder; may be null if the default decoder should be usedfactories
- the set of value factories, used to obtain the string value
factory
; may not be nullweak
- true if this factory should create weak references, or false if it should create strong referencessimple
- true if this factory should create simple references, false otherwisepublic ReferenceFactory with(ValueFactories valueFactories)
ValueFactory
with
in interface ReferenceFactory
with
in interface ValueFactory<Reference>
valueFactories
- the value factories object; may not be nullpublic Reference create(String value)
ValueFactory
create
in interface ValueFactory<Reference>
value
- the string from which the value is to be createdValueFactory.create(String, TextDecoder)
public Reference create(String value, TextDecoder decoder)
ValueFactory
create
in interface ValueFactory<Reference>
value
- the string from which the value is to be createddecoder
- the decoder that should be used; if null, the default decoder
is usedValueFactory.create(String)
public Reference create(int value)
ValueFactory
create
in interface ValueFactory<Reference>
value
- the integer from which the value is to be createdpublic Reference create(long value)
ValueFactory
create
in interface ValueFactory<Reference>
value
- the string from which the long is to be createdpublic Reference create(boolean value)
ValueFactory
create
in interface ValueFactory<Reference>
value
- the boolean from which the value is to be createdpublic Reference create(float value)
ValueFactory
create
in interface ValueFactory<Reference>
value
- the float from which the value is to be createdpublic Reference create(double value)
ValueFactory
create
in interface ValueFactory<Reference>
value
- the double from which the value is to be createdpublic Reference create(BigDecimal value)
ValueFactory
create
in interface ValueFactory<Reference>
value
- the decimal from which the value is to be createdpublic Reference create(Calendar value)
ValueFactory
create
in interface ValueFactory<Reference>
value
- the Calendar instance from which the value is to be createdpublic Reference create(Date value)
ValueFactory
create
in interface ValueFactory<Reference>
value
- the date from which the value is to be createdpublic Reference create(DateTime value) throws ValueFormatException
ValueFactory
create
in interface ValueFactory<Reference>
value
- the date-time instant from which the value is to be createdValueFormatException
- if the conversion from a Date could not be performedpublic Reference create(Name value)
ValueFactory
create
in interface ValueFactory<Reference>
value
- the name from which the value is to be createdpublic Reference create(Path value)
ValueFactory
create
in interface ValueFactory<Reference>
value
- the path from which the value is to be createdpublic Reference create(Path.Segment value)
ValueFactory
create
in interface ValueFactory<Reference>
value
- the path segment from which the value is to be createdpublic Reference create(Reference value)
ValueFactory
create
in interface ValueFactory<Reference>
value
- the reference from which the value is to be createdpublic Reference create(UUID value)
ValueFactory
create
in interface ValueFactory<Reference>
value
- the UUID from which the value is to be createdpublic Reference create(NodeKey value) throws ValueFormatException
ValueFactory
NodeKey
.create
in interface ValueFactory<Reference>
value
- the node key from which the value is to be createdValueFormatException
- if the conversion from a NodeKey could not be performedpublic Reference create(NodeKey value, boolean foreign) throws ValueFormatException
create
in interface ReferenceFactory
ValueFormatException
public Reference[] create(NodeKey[] values, boolean foreign) throws ValueFormatException
create
in interface ReferenceFactory
ValueFormatException
public Reference create(URI value)
ValueFactory
create
in interface ValueFactory<Reference>
value
- the URI from which the value is to be createdpublic Reference create(byte[] value)
ValueFactory
create
in interface ValueFactory<Reference>
value
- the content to be used to create the valuepublic Reference create(BinaryValue value) throws ValueFormatException, IoException
ValueFactory
create
in interface ValueFactory<Reference>
value
- the binary object to be used to create the valueValueFormatException
- if the conversion from the binary object could not be performedIoException
- If an unexpected problem occurs while accessing the supplied binary value (such as an
IOException
).public Reference create(InputStream stream) throws IoException
ValueFactory
create
in interface ValueFactory<Reference>
stream
- the stream containing the content to be used to create the valueIoException
- If an unexpected problem occurs while accessing the supplied stream (such as an IOException
).public Reference[] createEmptyArray(int length)
ValueFactory
createEmptyArray
in interface ValueFactory<Reference>
length
- the length of the array; must be a positive valueCopyright © 2008–2016 JBoss, a division of Red Hat. All rights reserved.