@Immutable public final class StringValueFactory extends AbstractValueFactory<String> implements StringFactory
ValueFactory
for PropertyType.STRING
values.AbstractValueFactory.ConvertingIterator<ValueType>
decoder, propertyType, valueFactories
DEFAULT_DECODER, DEFAULT_ENCODER
Constructor and Description |
---|
StringValueFactory(NamespaceRegistry.Holder namespaceRegistryHolder,
TextDecoder decoder,
TextEncoder encoder) |
StringValueFactory(TextDecoder decoder,
TextEncoder encoder) |
Modifier and Type | Method and Description |
---|---|
String |
create(BigDecimal value)
Create a value from a decimal.
|
String |
create(BinaryValue value)
Create a value from the binary content given by the supplied stream.
|
String |
create(boolean value)
Create a boolean from a string.
|
String |
create(byte[] value)
Create a value from the binary content given by the supplied array.
|
String |
create(Calendar value)
Create a value from a Calendar instance.
|
String |
create(Date value)
Create a value from a date.
|
String |
create(DateTime value)
Create a value from a date-time instant.
|
String |
create(double value)
Create a value from a double.
|
String |
create(float value)
Create a value from a float.
|
String |
create(InputStream stream)
Create a value from the binary content given by the supplied stream.
|
String |
create(int value)
Create a value from an integer.
|
String |
create(long value)
Create a long from a string.
|
String |
create(Name value)
Create a value from a name.
|
String |
create(NodeKey value)
Create a value from a
NodeKey . |
String |
create(Path.Segment value)
Create a value from a path segment.
|
String |
create(Path value)
Create a value from a path.
|
String |
create(Reference value)
Create a value from a reference.
|
String |
create(String value)
Create a value from a string, using no decoding.
|
String |
create(String value,
TextDecoder decoder)
Create a value from a string, using the supplied decoder.
|
String |
create(URI value)
Create a value from a URI.
|
String |
create(UUID value)
Create a value from a UUID.
|
String[] |
createEmptyArray(int length)
Creates an empty array of the given type.
|
TextEncoder |
getEncoder() |
protected StringFactory |
getStringValueFactory() |
StringFactory |
with(NamespaceRegistry.Holder namespaceRegistryHolder)
Return a potentially new copy of this factory that uses the supplied
NamespaceRegistry.Holder object. |
StringFactory |
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
public StringValueFactory(TextDecoder decoder, TextEncoder encoder)
public StringValueFactory(NamespaceRegistry.Holder namespaceRegistryHolder, TextDecoder decoder, TextEncoder encoder)
public StringFactory with(ValueFactories valueFactories)
ValueFactory
with
in interface StringFactory
with
in interface ValueFactory<String>
valueFactories
- the value factories object; may not be nullpublic StringFactory with(NamespaceRegistry.Holder namespaceRegistryHolder)
StringFactory
NamespaceRegistry.Holder
object.with
in interface StringFactory
namespaceRegistryHolder
- the holder of the namespace registry; may not be nullpublic TextEncoder getEncoder()
protected StringFactory getStringValueFactory()
getStringValueFactory
in class AbstractValueFactory<String>
public String create(String value)
ValueFactory
create
in interface ValueFactory<String>
value
- the string from which the value is to be createdValueFactory.create(String, TextDecoder)
public String create(String value, TextDecoder decoder)
ValueFactory
create
in interface ValueFactory<String>
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 String create(int value)
ValueFactory
create
in interface ValueFactory<String>
value
- the integer from which the value is to be createdpublic String create(long value)
ValueFactory
create
in interface ValueFactory<String>
value
- the string from which the long is to be createdpublic String create(boolean value)
ValueFactory
create
in interface ValueFactory<String>
value
- the boolean from which the value is to be createdpublic String create(float value)
ValueFactory
create
in interface ValueFactory<String>
value
- the float from which the value is to be createdpublic String create(double value)
ValueFactory
create
in interface ValueFactory<String>
value
- the double from which the value is to be createdpublic String create(BigDecimal value)
ValueFactory
create
in interface ValueFactory<String>
value
- the decimal from which the value is to be createdpublic String create(Calendar value)
ValueFactory
create
in interface ValueFactory<String>
value
- the Calendar instance from which the value is to be createdpublic String create(Date value)
ValueFactory
create
in interface ValueFactory<String>
value
- the date from which the value is to be createdpublic String create(DateTime value) throws ValueFormatException
ValueFactory
create
in interface ValueFactory<String>
value
- the date-time instant from which the value is to be createdValueFormatException
- if the conversion from a Date could not be performedpublic String create(Name value)
ValueFactory
create
in interface ValueFactory<String>
value
- the name from which the value is to be createdpublic String create(Path value)
ValueFactory
create
in interface ValueFactory<String>
value
- the path from which the value is to be createdpublic String create(Path.Segment value)
ValueFactory
create
in interface ValueFactory<String>
value
- the path segment from which the value is to be createdpublic String create(Reference value)
ValueFactory
create
in interface ValueFactory<String>
value
- the reference from which the value is to be createdpublic String create(URI value)
ValueFactory
create
in interface ValueFactory<String>
value
- the URI from which the value is to be createdpublic String create(UUID value) throws IoException
ValueFactory
create
in interface ValueFactory<String>
value
- the UUID from which the value is to be createdIoException
public String create(NodeKey value) throws ValueFormatException
ValueFactory
NodeKey
.create
in interface ValueFactory<String>
value
- the node key from which the value is to be createdValueFormatException
- if the conversion from a NodeKey could not be performedpublic String create(byte[] value)
ValueFactory
create
in interface ValueFactory<String>
value
- the content to be used to create the valuepublic String create(BinaryValue value) throws ValueFormatException, IoException
ValueFactory
create
in interface ValueFactory<String>
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 String create(InputStream stream) throws IoException
ValueFactory
create
in interface ValueFactory<String>
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 String[] createEmptyArray(int length)
ValueFactory
createEmptyArray
in interface ValueFactory<String>
length
- the length of the array; must be a positive valueCopyright © 2008–2016 JBoss, a division of Red Hat. All rights reserved.