org.jboss.dna.graph.properties.basic
Class InMemoryBinaryValueFactory

java.lang.Object
  extended by org.jboss.dna.graph.properties.basic.AbstractValueFactory<Binary>
      extended by org.jboss.dna.graph.properties.basic.InMemoryBinaryValueFactory
All Implemented Interfaces:
ValueFactory<Binary>

@Immutable
public class InMemoryBinaryValueFactory
extends AbstractValueFactory<Binary>

Teh standard ValueFactory for PropertyType.BINARY values.

Author:
Randall Hauch, John Verhaeg

Field Summary
 
Fields inherited from interface org.jboss.dna.graph.properties.ValueFactory
DEFAULT_DECODER, DEFAULT_ENCODER
 
Constructor Summary
InMemoryBinaryValueFactory(TextDecoder decoder, ValueFactory<String> stringValueFactory)
           
 
Method Summary
 Binary create(BigDecimal value)
          Create a value from a decimal.
 Binary create(Binary value)
          Create a value from the binary content given by the supplied stream.
 Binary create(boolean value)
          Create a boolean from a string.
 Binary create(byte[] value)
          Create a value from the binary content given by the supplied array.
 Binary create(Calendar value)
          Create a value from a Calendar instance.
 Binary create(Date value)
          Create a value from a date.
 Binary create(DateTime value)
          Create a value from a date-time instant.
 Binary create(double value)
          Create a value from a double.
 Binary create(float value)
          Create a value from a float.
 Binary create(InputStream stream, long approximateLength)
          Create a value from the binary content given by the supplied stream.
 Binary create(int value)
          Create a value from an integer.
 Binary create(long value)
          Create a long from a string.
 Binary create(Name value)
          Create a value from a name.
 Binary create(Path value)
          Create a value from a path.
 Binary create(Reader reader, long approximateLength)
          Create a value from a the binary content given by the supplied reader.
 Binary create(Reference value)
          Create a value from a reference.
 Binary create(String value)
          Create a value from a string, using no decoding.
 Binary create(String value, TextDecoder decoder)
          Create a value from a string, using the supplied decoder.
 Binary create(URI value)
          Create a value from a URI.
 Binary create(UUID value)
          Create a value from a UUID.
 
Methods inherited from class org.jboss.dna.graph.properties.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

InMemoryBinaryValueFactory

public InMemoryBinaryValueFactory(TextDecoder decoder,
                                  ValueFactory<String> stringValueFactory)
Method Detail

create

public Binary create(String value)
Create a value from a string, using no decoding.

Parameters:
value - the string from which the value is to be created
Returns:
the value, or null if the supplied string is null
See Also:
ValueFactory.create(String, TextDecoder)

create

public Binary create(String value,
                     TextDecoder decoder)
Create a value from a string, using the supplied decoder.

Parameters:
value - the string from which the value is to be created
decoder - the decoder that should be used; if null, the default decoder is used
Returns:
the value, or null if the supplied string is null
See Also:
ValueFactory.create(String)

create

public Binary create(int value)
Create a value from an integer.

Parameters:
value - the integer from which the value is to be created
Returns:
the value; never null

create

public Binary create(long value)
Create a long from a string.

Parameters:
value - the string from which the long is to be created
Returns:
the value; never null

create

public Binary create(boolean value)
Create a boolean from a string.

Parameters:
value - the boolean from which the value is to be created
Returns:
the value; never null

create

public Binary create(float value)
Create a value from a float.

Parameters:
value - the float from which the value is to be created
Returns:
the value; never null

create

public Binary create(double value)
Create a value from a double.

Parameters:
value - the double from which the value is to be created
Returns:
the value; never null

create

public Binary create(BigDecimal value)
Create a value from a decimal.

Parameters:
value - the decimal from which the value is to be created
Returns:
the value, or null if the supplied decimal is null

create

public Binary create(Calendar value)
Create a value from a Calendar instance.

Parameters:
value - the Calendar instance from which the value is to be created
Returns:
the value, or null if the supplied Calendar is null

create

public Binary create(Date value)
Create a value from a date.

Parameters:
value - the date from which the value is to be created
Returns:
the value, or null if the supplied date is null

create

public Binary create(DateTime value)
              throws ValueFormatException
Create a value from a date-time instant.

Parameters:
value - the date-time instant from which the value is to be created
Returns:
the value, or null if the supplied date is null
Throws:
ValueFormatException - if the conversion from a Date could not be performed
See Also:
ValueFactory.create(org.jboss.dna.graph.properties.DateTime)

create

public Binary create(Name value)
Create a value from a name.

Parameters:
value - the name from which the value is to be created
Returns:
the value, or null if the supplied name is null

create

public Binary create(Path value)
Create a value from a path.

Parameters:
value - the path from which the value is to be created
Returns:
the value, or null if the supplied path is null

create

public Binary create(Reference value)
Create a value from a reference.

Parameters:
value - the reference from which the value is to be created
Returns:
the value, or null if the supplied reference is null

create

public Binary create(URI value)
Create a value from a URI.

Parameters:
value - the URI from which the value is to be created
Returns:
the value, or null if the supplied URI is null

create

public Binary create(UUID value)
Create a value from a UUID.

Parameters:
value - the UUID from which the value is to be created
Returns:
the value, or null if the supplied URI is null
See Also:
ValueFactory.create(java.util.UUID)

create

public Binary create(byte[] value)
Create a value from the binary content given by the supplied array.

Parameters:
value - the content to be used to create the value
Returns:
the value, or null if the supplied stream is null

create

public Binary create(Binary value)
              throws ValueFormatException,
                     IoException
Create a value from the binary content given by the supplied stream.

Parameters:
value - the binary object to be used to create the value
Returns:
the value, or null if the supplied stream is null
Throws:
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).
See Also:
ValueFactory.create(org.jboss.dna.graph.properties.Binary)

create

public Binary create(InputStream stream,
                     long approximateLength)
              throws IoException
Create a value from the binary content given by the supplied stream.

Parameters:
stream - the stream containing the content to be used to create the value
approximateLength - the approximate length of the content (in bytes)
Returns:
the value, or null if the supplied stream is null
Throws:
IoException - If an unexpected problem occurs while accessing the supplied stream (such as an IOException).

create

public Binary create(Reader reader,
                     long approximateLength)
              throws IoException
Create a value from a the binary content given by the supplied reader.

Parameters:
reader - the reader containing the content to be used to create the value
approximateLength - the approximate length of the content (in bytes)
Returns:
the value, or null if the supplied string is null
Throws:
IoException - If an unexpected problem occurs while accessing the supplied reader (such as an IOException).


Copyright © 2008-Present JBoss a division of Red Hat. All Rights Reserved.