@Immutable public class NameValueFactory extends AbstractValueFactory<Name> implements NameFactory
ValueFactory for PropertyType.NAME values.AbstractValueFactory.ConvertingIterator<ValueType>NameFactory.Holder| Modifier and Type | Field and Description |
|---|---|
protected static String |
FULLY_QUALFIED_NAME_PATTERN_STRING |
protected static Pattern |
FULLY_QUALIFIED_NAME_PATTERN |
decoder, propertyType, valueFactoriesDEFAULT_DECODER, DEFAULT_ENCODER| Constructor and Description |
|---|
NameValueFactory(NamespaceRegistry.Holder namespaceRegistryHolder,
TextDecoder decoder,
ValueFactories factories)
Create a new instance.
|
| Modifier and Type | Method and Description |
|---|---|
Name |
create(BigDecimal value)
Create a value from a decimal.
|
Name |
create(BinaryValue value)
Create a value from the binary content given by the supplied stream.
|
Name |
create(boolean value)
Create a boolean from a string.
|
Name |
create(byte[] value)
Create a value from the binary content given by the supplied array.
|
Name |
create(Calendar value)
Create a value from a Calendar instance.
|
Name |
create(Date value)
Create a value from a date.
|
Name |
create(DateTime value)
Create a value from a date-time instant.
|
Name |
create(double value)
Create a value from a double.
|
Name |
create(float value)
Create a value from a float.
|
Name |
create(InputStream stream)
Create a value from the binary content given by the supplied stream.
|
Name |
create(int value)
Create a value from an integer.
|
Name |
create(long value)
Create a long from a string.
|
Name |
create(Name value)
Create a value from a name.
|
Name |
create(NodeKey value)
Create a value from a
NodeKey. |
Name |
create(Path.Segment segment)
Create a value from a path segment.
|
Name |
create(Path value)
Create a value from a path.
|
Name |
create(Reference value)
Create a value from a reference.
|
Name |
create(String value)
Create a value from a string, using no decoding.
|
Name |
create(String namespaceUri,
String localName)
Create a name from the given namespace URI and local name.
|
Name |
create(String namespaceUri,
String localName,
TextDecoder decoder)
Create a name from the given namespace URI and local name.
|
Name |
create(String value,
TextDecoder decoder)
Create a value from a string, using the supplied decoder.
|
Name |
create(URI value)
Create a value from a URI.
|
Name |
create(UUID value)
Create a value from a UUID.
|
Name[] |
createEmptyArray(int length)
Creates an empty array of the given type.
|
NamespaceRegistry |
getNamespaceRegistry()
Get the namespace registry.
|
NameFactory |
with(NamespaceRegistry.Holder namespaceRegistryHolder)
Return a potentially new copy of this factory that uses the supplied
NamespaceRegistry.Holder object. |
NameFactory |
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, getStringValueFactoryprotected static final String FULLY_QUALFIED_NAME_PATTERN_STRING
protected static final Pattern FULLY_QUALIFIED_NAME_PATTERN
public NameValueFactory(NamespaceRegistry.Holder namespaceRegistryHolder, TextDecoder decoder, ValueFactories factories)
namespaceRegistryHolder - the holder of the namespace registry; may not be nulldecoder - 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 NameFactory with(ValueFactories valueFactories)
ValueFactorywith in interface NameFactorywith in interface ValueFactory<Name>valueFactories - the value factories object; may not be nullpublic NameFactory with(NamespaceRegistry.Holder namespaceRegistryHolder)
NameFactoryNamespaceRegistry.Holder object.with in interface NameFactorynamespaceRegistryHolder - the holder of the namespace registry; may not be nullpublic Name create(String value)
ValueFactorycreate in interface ValueFactory<Name>value - the string from which the value is to be createdValueFactory.create(String, TextDecoder)public Name create(String value, TextDecoder decoder)
ValueFactorycreate in interface ValueFactory<Name>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 Name create(String namespaceUri, String localName)
NameFactory
This method is equivalent to calling NameFactory.create(String, String, TextDecoder) with a null encoder.
create in interface NameFactorynamespaceUri - the namespace URIlocalName - the local namepublic Name create(String namespaceUri, String localName, TextDecoder decoder)
NameFactorycreate in interface NameFactorynamespaceUri - the namespace URIlocalName - the local namedecoder - the decoder that should be used to decode the qualified namepublic Name create(int value)
ValueFactorycreate in interface ValueFactory<Name>value - the integer from which the value is to be createdpublic Name create(long value)
ValueFactorycreate in interface ValueFactory<Name>value - the string from which the long is to be createdpublic Name create(boolean value)
ValueFactorycreate in interface ValueFactory<Name>value - the boolean from which the value is to be createdpublic Name create(float value)
ValueFactorycreate in interface ValueFactory<Name>value - the float from which the value is to be createdpublic Name create(double value)
ValueFactorycreate in interface ValueFactory<Name>value - the double from which the value is to be createdpublic Name create(BigDecimal value)
ValueFactorycreate in interface ValueFactory<Name>value - the decimal from which the value is to be createdpublic Name create(Calendar value)
ValueFactorycreate in interface ValueFactory<Name>value - the Calendar instance from which the value is to be createdpublic Name create(Date value)
ValueFactorycreate in interface ValueFactory<Name>value - the date from which the value is to be createdpublic Name create(DateTime value) throws ValueFormatException
ValueFactorycreate in interface ValueFactory<Name>value - the date-time instant from which the value is to be createdValueFormatException - if the conversion from a Date could not be performedpublic Name create(Name value)
ValueFactorycreate in interface ValueFactory<Name>value - the name from which the value is to be createdpublic Name create(Path value)
ValueFactorycreate in interface ValueFactory<Name>value - the path from which the value is to be createdpublic Name create(Path.Segment segment)
ValueFactorycreate in interface ValueFactory<Name>segment - the path segment from which the value is to be createdpublic Name create(Reference value)
ValueFactorycreate in interface ValueFactory<Name>value - the reference from which the value is to be createdpublic Name create(URI value)
ValueFactorycreate in interface ValueFactory<Name>value - the URI from which the value is to be createdpublic Name create(UUID value) throws IoException
ValueFactorycreate in interface ValueFactory<Name>value - the UUID from which the value is to be createdIoExceptionpublic Name create(NodeKey value) throws ValueFormatException
ValueFactoryNodeKey.create in interface ValueFactory<Name>value - the node key from which the value is to be createdValueFormatException - if the conversion from a NodeKey could not be performedpublic Name create(byte[] value)
ValueFactorycreate in interface ValueFactory<Name>value - the content to be used to create the valuepublic Name create(BinaryValue value) throws ValueFormatException, IoException
ValueFactorycreate in interface ValueFactory<Name>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 Name create(InputStream stream) throws IoException
ValueFactorycreate in interface ValueFactory<Name>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 NamespaceRegistry getNamespaceRegistry()
NameFactorygetNamespaceRegistry in interface NameFactorynullpublic Name[] createEmptyArray(int length)
ValueFactorycreateEmptyArray in interface ValueFactory<Name>length - the length of the array; must be a positive valueCopyright © 2008-2014 JBoss, a division of Red Hat. All Rights Reserved.