|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.jboss.dna.graph.property.basic.AbstractValueFactory<String> org.jboss.dna.graph.property.basic.StringValueFactory
@Immutable public class StringValueFactory
The standard ValueFactory
for PropertyType.STRING
values.
Field Summary |
---|
Fields inherited from interface org.jboss.dna.graph.property.ValueFactory |
---|
DEFAULT_DECODER, DEFAULT_ENCODER |
Constructor Summary | |
---|---|
StringValueFactory(NamespaceRegistry namespaceRegistry,
TextDecoder decoder,
TextEncoder encoder)
|
|
StringValueFactory(TextDecoder decoder,
TextEncoder encoder)
|
Method Summary | |
---|---|
String |
create(BigDecimal value)
Create a value from a decimal. |
String |
create(Binary 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,
long approximateLength)
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(Path value)
Create a value from a path. |
String |
create(Reader reader,
long approximateLength)
Create a value from a the binary content given by the supplied reader. |
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. |
TextEncoder |
getEncoder()
|
Methods inherited from class org.jboss.dna.graph.property.basic.AbstractValueFactory |
---|
create, create, create, create, create, create, create, create, create, create, create, create, create, create, create, create, create, create, create, create, create, create, getDecoder, getPropertyType |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public StringValueFactory(TextDecoder decoder, TextEncoder encoder)
public StringValueFactory(NamespaceRegistry namespaceRegistry, TextDecoder decoder, TextEncoder encoder)
Method Detail |
---|
public TextEncoder getEncoder()
public String create(String value)
value
- the string from which the value is to be created
ValueFactory.create(String, TextDecoder)
public String create(String value, TextDecoder decoder)
value
- the string from which the value is to be createddecoder
- the decoder that should be used; if null, the default decoder
is used
ValueFactory.create(String)
public String create(int value)
value
- the integer from which the value is to be created
public String create(long value)
value
- the string from which the long is to be created
public String create(boolean value)
value
- the boolean from which the value is to be created
public String create(float value)
value
- the float from which the value is to be created
public String create(double value)
value
- the double from which the value is to be created
public String create(BigDecimal value)
value
- the decimal from which the value is to be created
public String create(Calendar value)
value
- the Calendar instance from which the value is to be created
public String create(Date value)
value
- the date from which the value is to be created
public String create(DateTime value) throws ValueFormatException
value
- the date-time instant from which the value is to be created
ValueFormatException
- if the conversion from a Date could not be performedValueFactory.create(org.jboss.dna.graph.property.DateTime)
public String create(Name value)
value
- the name from which the value is to be created
public String create(Path value)
value
- the path from which the value is to be created
public String create(Reference value)
value
- the reference from which the value is to be created
public String create(URI value)
value
- the URI from which the value is to be created
public String create(UUID value) throws IoException
value
- the UUID from which the value is to be created
IoException
ValueFactory.create(java.util.UUID)
public String create(byte[] value)
value
- the content to be used to create the value
public String create(Binary value) throws ValueFormatException, IoException
value
- the binary object to be used to create the value
ValueFormatException
- if the conversion from the binary object could not be performed
IoException
- If an unexpected problem occurs while accessing the supplied binary value (such as an
IOException
).ValueFactory.create(org.jboss.dna.graph.property.Binary)
public String create(InputStream stream, long approximateLength) throws IoException
stream
- the stream containing the content to be used to create the valueapproximateLength
- the approximate length of the content (in bytes)
IoException
- If an unexpected problem occurs while accessing the supplied stream (such as an IOException
).public String create(Reader reader, long approximateLength) throws IoException
reader
- the reader containing the content to be used to create the valueapproximateLength
- the approximate length of the content (in bytes)
IoException
- If an unexpected problem occurs while accessing the supplied reader (such as an IOException
).
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |