|
ModeShape Distribution 3.0.0.Beta4 | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ValueFormatException | |
---|---|
org.modeshape.jcr.query.model | The Abstract Query Model is a vocabulary that can be used to construct a language-neutral representation of a query. |
org.modeshape.jcr.query.parse | This package defines the QueryParser interface, which defines a component that can parse a query represented
in a specific language and produce the corresponding abstract query model representation. |
org.modeshape.jcr.value | Nodes in a graph contain properties, and this package defines the interfaces, classes and exceptions for representing and working with properties and their values. |
org.modeshape.jcr.value.basic | A set of basic implementations of the various interfaces defined in org.modeshape.jcr.value . |
org.modeshape.jcr.value.binary |
Uses of ValueFormatException in org.modeshape.jcr.query.model |
---|
Methods in org.modeshape.jcr.query.model that throw ValueFormatException | |
---|---|
T |
TypeSystem.TypeFactory.create(Object value)
Create the typed representation of the value given the supplied object representation. |
T |
TypeSystem.TypeFactory.create(String value)
Create the typed representation of the value given the supplied string representation. |
Uses of ValueFormatException in org.modeshape.jcr.query.parse |
---|
Methods in org.modeshape.jcr.query.parse that throw ValueFormatException | |
---|---|
protected LiteralValue |
JcrSql2QueryParser.literal(TypeSystem typeSystem,
Object value)
|
protected Literal |
BasicSqlQueryParser.literal(TypeSystem typeSystem,
Object value)
|
Uses of ValueFormatException in org.modeshape.jcr.value |
---|
Methods in org.modeshape.jcr.value that throw ValueFormatException | |
---|---|
T |
ValueFactory.create(BigDecimal value)
Create a value from a decimal. |
T[] |
ValueFactory.create(BigDecimal[] values)
Create an array of values from an array of decimal values. |
T |
ValueFactory.create(BinaryValue value)
Create a value from the binary content given by the supplied stream. |
T[] |
ValueFactory.create(BinaryValue[] values)
Create an array of values from the array of binary objects. |
T |
ValueFactory.create(boolean value)
Create a boolean from a string. |
T[] |
ValueFactory.create(boolean[] values)
Create an array of values from an array of booleans. |
T |
ValueFactory.create(byte[] value)
Create a value from the binary content given by the supplied array. |
T[] |
ValueFactory.create(byte[][] values)
Create an array of values from the array of binary content. |
T |
ValueFactory.create(Calendar value)
Create a value from a Calendar instance. |
T[] |
ValueFactory.create(Calendar[] values)
Create an array of values from an array of Calendar instances. |
T |
ValueFactory.create(Date value)
Create a value from a date. |
T[] |
ValueFactory.create(Date[] values)
Create an array of values from an array of dates. |
T |
ValueFactory.create(DateTime value)
Create a value from a date-time instant. |
T[] |
ValueFactory.create(DateTime[] values)
Create an array of values from an array of DateTime instants. |
T |
ValueFactory.create(double value)
Create a value from a double. |
T[] |
ValueFactory.create(double[] values)
Create an array of values from an array of doubles. |
T |
ValueFactory.create(float value)
Create a value from a float. |
T[] |
ValueFactory.create(float[] values)
Create an array of values from an array of floats. |
T |
ValueFactory.create(InputStream stream)
Create a value from the binary content given by the supplied stream. |
T |
ValueFactory.create(int value)
Create a value from an integer. |
T[] |
ValueFactory.create(int[] values)
Create an array of values from an array of integers. |
Iterable<T> |
ValueFactory.create(Iterable<?> valueIterable)
Create an iterable with the values (of an unknown type). |
Iterator<T> |
ValueFactory.create(Iterator<?> values)
Create an iterator over the values (of an unknown type). |
T |
ValueFactory.create(long value)
Create a long from a string. |
T[] |
ValueFactory.create(long[] values)
Create an array of values from an array of longs. |
T |
ValueFactory.create(Name value)
Create a value from a name. |
T[] |
ValueFactory.create(Name[] values)
Create an array of values from an array of names. |
T |
ValueFactory.create(NodeKey value)
Create a value from a NodeKey . |
T[] |
ValueFactory.create(NodeKey[] value)
Create an array of values from an array of NodeKey . |
Reference[] |
ReferenceFactory.create(NodeKey[] value,
boolean foreign)
|
Reference |
ReferenceFactory.create(NodeKey value,
boolean foreign)
|
T |
ValueTypeSystem.Factory.create(Object value)
|
T |
ValueFactory.create(Object value)
Create a value from the specified information by determining which other create method applies and delegating
to that method. |
T[] |
ValueFactory.create(Object[] values)
Create an array of values from the specified information by determining which other create method applies for
each object and then delegating to that method. |
T |
ValueFactory.create(Path.Segment value)
Create a value from a path segment. |
T |
ValueFactory.create(Path value)
Create a value from a path. |
T[] |
ValueFactory.create(Path[] values)
Create an array of values from an array of paths. |
T |
ValueFactory.create(Reference value)
Create a value from a reference. |
T[] |
ValueFactory.create(Reference[] values)
Create an array of values from an array of references. |
T |
ValueTypeSystem.Factory.create(String value)
|
T |
ValueFactory.create(String value)
Create a value from a string, using no decoding. |
T[] |
ValueFactory.create(String[] values)
Create an array of values from an array of string values, using no decoding. |
T[] |
ValueFactory.create(String[] values,
TextDecoder decoder)
Create an array of values from an array of strings, using the supplied decoder. |
T |
ValueFactory.create(String value,
TextDecoder decoder)
Create a value from a string, using the supplied decoder. |
T |
ValueFactory.create(URI value)
Create a value from a URI. |
T[] |
ValueFactory.create(URI[] values)
Create an array of values from an array of URIs. |
T |
ValueFactory.create(UUID value)
Create a value from a UUID. |
T[] |
ValueFactory.create(UUID[] values)
Create an array of values from an array of UUIDs. |
Uses of ValueFormatException in org.modeshape.jcr.value.basic |
---|
Methods in org.modeshape.jcr.value.basic that throw ValueFormatException | |
---|---|
UUID |
UuidValueFactory.create(BinaryValue value)
|
URI |
UriValueFactory.create(BinaryValue value)
|
String |
StringValueFactory.create(BinaryValue value)
|
Reference |
ReferenceValueFactory.create(BinaryValue value)
|
Path |
PathValueFactory.create(BinaryValue value)
|
Object |
ObjectValueFactory.create(BinaryValue value)
|
Name |
NameValueFactory.create(BinaryValue value)
|
Long |
LongValueFactory.create(BinaryValue value)
|
DateTime |
JodaDateTimeValueFactory.create(BinaryValue value)
|
Double |
DoubleValueFactory.create(BinaryValue value)
|
BigDecimal |
DecimalValueFactory.create(BinaryValue value)
|
Boolean |
BooleanValueFactory.create(BinaryValue value)
|
T[] |
AbstractValueFactory.create(BinaryValue[] values)
|
UUID |
UuidValueFactory.create(DateTime value)
|
URI |
UriValueFactory.create(DateTime value)
|
String |
StringValueFactory.create(DateTime value)
|
Reference |
ReferenceValueFactory.create(DateTime value)
|
Path |
PathValueFactory.create(DateTime value)
|
Name |
NameValueFactory.create(DateTime value)
|
Long |
LongValueFactory.create(DateTime value)
|
DateTime |
JodaDateTimeValueFactory.create(DateTime value)
|
Double |
DoubleValueFactory.create(DateTime value)
|
BigDecimal |
DecimalValueFactory.create(DateTime value)
|
Boolean |
BooleanValueFactory.create(DateTime value)
|
T[] |
AbstractValueFactory.create(DateTime[] values)
|
Iterable<T> |
AbstractValueFactory.create(Iterable<?> valueIterable)
|
Iterator<T> |
AbstractValueFactory.create(Iterator<?> values)
|
UUID |
UuidValueFactory.create(NodeKey value)
|
URI |
UriValueFactory.create(NodeKey value)
|
String |
StringValueFactory.create(NodeKey value)
|
Reference |
ReferenceValueFactory.create(NodeKey value)
|
Path |
PathValueFactory.create(NodeKey value)
|
Object |
ObjectValueFactory.create(NodeKey value)
|
Name |
NameValueFactory.create(NodeKey value)
|
Long |
LongValueFactory.create(NodeKey value)
|
DateTime |
JodaDateTimeValueFactory.create(NodeKey value)
|
Double |
DoubleValueFactory.create(NodeKey value)
|
BigDecimal |
DecimalValueFactory.create(NodeKey value)
|
Boolean |
BooleanValueFactory.create(NodeKey value)
|
T[] |
AbstractValueFactory.create(NodeKey[] values)
|
Reference[] |
ReferenceValueFactory.create(NodeKey[] values,
boolean foreign)
|
Reference |
ReferenceValueFactory.create(NodeKey value,
boolean foreign)
|
Uses of ValueFormatException in org.modeshape.jcr.value.binary |
---|
Methods in org.modeshape.jcr.value.binary that throw ValueFormatException | |
---|---|
BinaryValue |
BinaryStoreValueFactory.create(BinaryValue value)
|
BinaryValue |
BinaryStoreValueFactory.create(byte[] value)
|
BinaryValue |
BinaryStoreValueFactory.create(DateTime value)
|
BinaryValue |
BinaryStoreValueFactory.create(NodeKey value)
|
|
ModeShape Distribution 3.0.0.Beta4 | |||||||||
PREV NEXT | FRAMES NO FRAMES |