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