@Immutable public class UuidValueFactory extends AbstractValueFactory<UUID> implements UuidFactory
ValueFactory
for PropertyType.URI
values.AbstractValueFactory.ConvertingIterator<ValueType>
decoder, propertyType, valueFactories
DEFAULT_DECODER, DEFAULT_ENCODER
Constructor and Description |
---|
UuidValueFactory(TextDecoder decoder,
ValueFactories factories)
Create a new instance.
|
Modifier and Type | Method and Description |
---|---|
UUID |
create()
Create a new random UUID.
|
UUID |
create(BigDecimal value)
Create a value from a decimal.
|
UUID |
create(BinaryValue value)
Create a value from the binary content given by the supplied stream.
|
UUID |
create(boolean value)
Create a boolean from a string.
|
UUID |
create(byte[] value)
Create a value from the binary content given by the supplied array.
|
UUID |
create(Calendar value)
Create a value from a Calendar instance.
|
UUID |
create(Date value)
Create a value from a date.
|
UUID |
create(DateTime value)
Create a value from a date-time instant.
|
UUID |
create(double value)
Create a value from a double.
|
UUID |
create(float value)
Create a value from a float.
|
UUID |
create(InputStream stream)
Create a value from the binary content given by the supplied stream.
|
UUID |
create(int value)
Create a value from an integer.
|
UUID |
create(long value)
Create a long from a string.
|
UUID |
create(Name value)
Create a value from a name.
|
UUID |
create(NodeKey value)
Create a value from a
NodeKey . |
UUID |
create(Path.Segment value)
Create a value from a path segment.
|
UUID |
create(Path value)
Create a value from a path.
|
UUID |
create(Reference value)
Create a value from a reference.
|
UUID |
create(String value)
Create a value from a string, using no decoding.
|
UUID |
create(String value,
TextDecoder decoder)
Create a value from a string, using the supplied decoder.
|
UUID |
create(URI value)
Create a value from a URI.
|
UUID |
create(UUID value)
Create a value from a UUID.
|
protected UUID[] |
createEmptyArray(int length) |
UuidFactory |
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
public UuidValueFactory(TextDecoder decoder, ValueFactories factories)
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 nullpublic UuidFactory with(ValueFactories valueFactories)
ValueFactory
with
in interface UuidFactory
with
in interface ValueFactory<UUID>
valueFactories
- the value factories object; may not be nullpublic UUID create()
UuidFactory
create
in interface UuidFactory
public UUID create(String value)
ValueFactory
create
in interface ValueFactory<UUID>
value
- the string from which the value is to be createdValueFactory.create(String, TextDecoder)
public UUID create(String value, TextDecoder decoder)
ValueFactory
create
in interface ValueFactory<UUID>
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 UUID create(int value)
ValueFactory
create
in interface ValueFactory<UUID>
value
- the integer from which the value is to be createdpublic UUID create(long value)
ValueFactory
create
in interface ValueFactory<UUID>
value
- the string from which the long is to be createdpublic UUID create(boolean value)
ValueFactory
create
in interface ValueFactory<UUID>
value
- the boolean from which the value is to be createdpublic UUID create(float value)
ValueFactory
create
in interface ValueFactory<UUID>
value
- the float from which the value is to be createdpublic UUID create(double value)
ValueFactory
create
in interface ValueFactory<UUID>
value
- the double from which the value is to be createdpublic UUID create(BigDecimal value)
ValueFactory
create
in interface ValueFactory<UUID>
value
- the decimal from which the value is to be createdpublic UUID create(Calendar value)
ValueFactory
create
in interface ValueFactory<UUID>
value
- the Calendar instance from which the value is to be createdpublic UUID create(Date value)
ValueFactory
create
in interface ValueFactory<UUID>
value
- the date from which the value is to be createdpublic UUID create(DateTime value) throws ValueFormatException
ValueFactory
create
in interface ValueFactory<UUID>
value
- the date-time instant from which the value is to be createdValueFormatException
- if the conversion from a Date could not be performedpublic UUID create(Name value)
ValueFactory
create
in interface ValueFactory<UUID>
value
- the name from which the value is to be createdpublic UUID create(Path value)
ValueFactory
create
in interface ValueFactory<UUID>
value
- the path from which the value is to be createdpublic UUID create(Path.Segment value)
ValueFactory
create
in interface ValueFactory<UUID>
value
- the path segment from which the value is to be createdpublic UUID create(Reference value)
ValueFactory
create
in interface ValueFactory<UUID>
value
- the reference from which the value is to be createdpublic UUID create(URI value)
ValueFactory
create
in interface ValueFactory<UUID>
value
- the URI from which the value is to be createdpublic UUID create(UUID value)
ValueFactory
create
in interface ValueFactory<UUID>
value
- the UUID from which the value is to be createdpublic UUID create(NodeKey value) throws ValueFormatException
ValueFactory
NodeKey
.create
in interface ValueFactory<UUID>
value
- the node key from which the value is to be createdValueFormatException
- if the conversion from a NodeKey could not be performedpublic UUID create(byte[] value)
ValueFactory
create
in interface ValueFactory<UUID>
value
- the content to be used to create the valuepublic UUID create(BinaryValue value) throws ValueFormatException, IoException
ValueFactory
create
in interface ValueFactory<UUID>
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 UUID create(InputStream stream) throws IoException
ValueFactory
create
in interface ValueFactory<UUID>
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
).protected UUID[] createEmptyArray(int length)
createEmptyArray
in class AbstractValueFactory<UUID>
Copyright © 2008-2013 JBoss, a division of Red Hat. All Rights Reserved.