ModeShape Distribution 3.0.0.Beta4

org.modeshape.jcr.value.basic
Class LongValueFactory

java.lang.Object
  extended by org.modeshape.jcr.value.basic.AbstractValueFactory<Long>
      extended by org.modeshape.jcr.value.basic.LongValueFactory
All Implemented Interfaces:
ValueFactory<Long>

@Immutable
public class LongValueFactory
extends AbstractValueFactory<Long>

The standard ValueFactory for PropertyType.LONG values.


Nested Class Summary
 
Nested classes/interfaces inherited from class org.modeshape.jcr.value.basic.AbstractValueFactory
AbstractValueFactory.ConvertingIterator<ValueType>
 
Field Summary
 
Fields inherited from interface org.modeshape.jcr.value.ValueFactory
DEFAULT_DECODER, DEFAULT_ENCODER
 
Constructor Summary
LongValueFactory(TextDecoder decoder, ValueFactory<String> stringValueFactory)
           
 
Method Summary
 Long create(BigDecimal value)
          Create a value from a decimal.
 Long create(BinaryValue value)
          Create a value from the binary content given by the supplied stream.
 Long create(boolean value)
          Create a boolean from a string.
 Long create(byte[] value)
          Create a value from the binary content given by the supplied array.
 Long create(Calendar value)
          Create a value from a Calendar instance.
 Long create(Date value)
          Create a value from a date.
 Long create(DateTime value)
          Create a value from a date-time instant.
 Long create(double value)
          Create a value from a double.
 Long create(float value)
          Create a value from a float.
 Long create(InputStream stream)
          Create a value from the binary content given by the supplied stream.
 Long create(int value)
          Create a value from an integer.
 Long create(long value)
          Create a long from a string.
 Long create(Name value)
          Create a value from a name.
 Long create(NodeKey value)
          Create a value from a NodeKey.
 Long create(Path.Segment value)
          Create a value from a path segment.
 Long create(Path value)
          Create a value from a path.
 Long create(Reference value)
          Create a value from a reference.
 Long create(String value)
          Create a value from a string, using no decoding.
 Long create(String value, TextDecoder decoder)
          Create a value from a string, using the supplied decoder.
 Long create(URI value)
          Create a value from a URI.
 Long create(UUID value)
          Create a value from a UUID.
protected  Long[] createEmptyArray(int length)
           
 
Methods inherited from class org.modeshape.jcr.value.basic.AbstractValueFactory
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
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LongValueFactory

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

create

public Long create(String value)
Description copied from interface: ValueFactory
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 Long create(String value,
                   TextDecoder decoder)
Description copied from interface: ValueFactory
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 Long create(int value)
Description copied from interface: ValueFactory
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 Long create(long value)
Description copied from interface: ValueFactory
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 Long create(boolean value)
Description copied from interface: ValueFactory
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 Long create(float value)
Description copied from interface: ValueFactory
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 Long create(double value)
Description copied from interface: ValueFactory
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 Long create(BigDecimal value)
Description copied from interface: ValueFactory
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 Long create(Calendar value)
Description copied from interface: ValueFactory
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 Long create(Date value)
Description copied from interface: ValueFactory
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 Long create(DateTime value)
            throws ValueFormatException
Description copied from interface: ValueFactory
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

create

public Long create(Name value)
Description copied from interface: ValueFactory
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 Long create(Path value)
Description copied from interface: ValueFactory
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 Long create(Path.Segment value)
Description copied from interface: ValueFactory
Create a value from a path segment.

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

create

public Long create(Reference value)
Description copied from interface: ValueFactory
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 Long create(URI value)
Description copied from interface: ValueFactory
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 Long create(UUID value)
            throws IoException
Description copied from interface: ValueFactory
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
Throws:
IoException

create

public Long create(NodeKey value)
            throws ValueFormatException
Description copied from interface: ValueFactory
Create a value from a NodeKey.

Parameters:
value - the node key from which the value is to be created
Returns:
the value, or null if the supplied URI is null
Throws:
ValueFormatException - if the conversion from a NodeKey could not be performed

create

public Long create(byte[] value)
Description copied from interface: ValueFactory
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 Long create(BinaryValue value)
            throws ValueFormatException,
                   IoException
Description copied from interface: ValueFactory
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).

create

public Long create(InputStream stream)
            throws IoException
Description copied from interface: ValueFactory
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
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).

createEmptyArray

protected Long[] createEmptyArray(int length)
Specified by:
createEmptyArray in class AbstractValueFactory<Long>

ModeShape Distribution 3.0.0.Beta4

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