Uses of Interface
org.modeshape.common.text.TextDecoder

Packages that use TextDecoder
org.modeshape.common.text A set of utilities for working with text. 
org.modeshape.graph.property 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.graph.property.basic A set of basic implementations of the various interfaces defined in org.modeshape.graph.property
org.modeshape.graph.xml Graph content can often be represented in XML, so this part of the ModeShape Graph API defines the classes that provide the binding between graph and XML content. 
org.modeshape.maven The classes that make up the Maven classloader system. 
org.modeshape.maven.spi The classes that define the SPI for the Maven classloader system. 
org.modeshape.sequencer.xml The classes that make up the XML sequencer. 
 

Uses of TextDecoder in org.modeshape.common.text
 

Classes in org.modeshape.common.text that implement TextDecoder
 class FilenameEncoder
          An encoder useful for converting text to be used within a filename on common file systems and operating systems, including Linux, OS X, and Windows XP.
 class Jsr283Encoder
          Encoder that escapes characters that are not allowed in JCR names.
 class NoOpEncoder
          An encoder implementation that does nothing.
 class QuoteEncoder
           
 class UrlEncoder
          An encoder useful for converting text to be used within a URL, as defined by Section 2.3 of RFC 2396.
 class XmlNameEncoder
          An encoder and decoder for XML element and attribute names.
 class XmlValueEncoder
          An encoder useful for converting text to be used within XML attribute values.
 

Uses of TextDecoder in org.modeshape.graph.property
 

Fields in org.modeshape.graph.property declared as TextDecoder
static TextDecoder ValueFactory.DEFAULT_DECODER
           
static TextDecoder Path.DEFAULT_DECODER
          The default text decoder to be used when none is otherwise specified.
static TextDecoder Path.JSR283_DECODER
          The text decoder that decodes according to JSR-283.
static TextDecoder Path.NO_OP_DECODER
          The text decoder that does nothing.
static TextDecoder Path.URL_DECODER
          The text decoder that decodes text according to the rules of RFC 2396.
 

Methods in org.modeshape.graph.property with parameters of type TextDecoder
 T[] ValueFactory.create(String[] values, TextDecoder decoder)
          Create an array of values from an array of strings, using the supplied decoder.
 Name NameFactory.create(String namespaceUri, String localName, TextDecoder decoder)
          Create a name from the given namespace URI and local name.
 T ValueFactory.create(String value, TextDecoder decoder)
          Create a value from a string, using the supplied decoder.
 Path.Segment PathFactory.createSegment(String segmentName, TextDecoder decoder)
          Create a path segment given the supplied segment name.
 

Uses of TextDecoder in org.modeshape.graph.property.basic
 

Methods in org.modeshape.graph.property.basic that return TextDecoder
 TextDecoder AbstractValueFactory.getDecoder()
          Get the text decoder.
protected  TextDecoder AbstractValueFactory.getDecoder(TextDecoder decoder)
          Utility method to obtain either the supplied decoder (if not null) or this factory's decoder.
 

Methods in org.modeshape.graph.property.basic with parameters of type TextDecoder
 T[] AbstractValueFactory.create(String[] values, TextDecoder decoder)
          Create an array of values from an array of strings, using the supplied decoder.
 Name NameValueFactory.create(String namespaceUri, String localName, TextDecoder decoder)
          Create a name from the given namespace URI and local name.
 UUID UuidValueFactory.create(String value, TextDecoder decoder)
          Create a value from a string, using the supplied decoder.
 URI UriValueFactory.create(String value, TextDecoder decoder)
          Create a value from a string, using the supplied decoder.
 String StringValueFactory.create(String value, TextDecoder decoder)
          Create a value from a string, using the supplied decoder.
 Reference ReferenceValueFactory.create(String value, TextDecoder decoder)
          Create a value from a string, using the supplied decoder.
 Path PathValueFactory.create(String value, TextDecoder decoder)
          Create a value from a string, using the supplied decoder.
 Object ObjectValueFactory.create(String value, TextDecoder decoder)
          Create a value from a string, using the supplied decoder.
 Name NameValueFactory.create(String value, TextDecoder decoder)
          Create a value from a string, using the supplied decoder.
 Long LongValueFactory.create(String value, TextDecoder decoder)
          Create a value from a string, using the supplied decoder.
 DateTime JodaDateTimeValueFactory.create(String value, TextDecoder decoder)
          Create a value from a string, using the supplied decoder.
 Double DoubleValueFactory.create(String value, TextDecoder decoder)
          Create a value from a string, using the supplied decoder.
 BigDecimal DecimalValueFactory.create(String value, TextDecoder decoder)
          Create a value from a string, using the supplied decoder.
 Boolean BooleanValueFactory.create(String value, TextDecoder decoder)
          Create a value from a string, using the supplied decoder.
 Binary AbstractBinaryValueFactory.create(String value, TextDecoder decoder)
          Create a value from a string, using the supplied decoder.
 Path.Segment PathValueFactory.createSegment(String segmentName, TextDecoder decoder)
           Create a path segment given the supplied segment name.
protected  TextDecoder AbstractValueFactory.getDecoder(TextDecoder decoder)
          Utility method to obtain either the supplied decoder (if not null) or this factory's decoder.
 

Constructors in org.modeshape.graph.property.basic with parameters of type TextDecoder
AbstractBinaryValueFactory(TextDecoder decoder, ValueFactory<String> stringValueFactory)
           
AbstractValueFactory(PropertyType type, TextDecoder decoder, ValueFactory<String> stringValueFactory)
           
BooleanValueFactory(TextDecoder decoder, ValueFactory<String> stringValueFactory)
           
DecimalValueFactory(TextDecoder decoder, ValueFactory<String> stringValueFactory)
           
DoubleValueFactory(TextDecoder decoder, ValueFactory<String> stringValueFactory)
           
InMemoryBinaryValueFactory(TextDecoder decoder, ValueFactory<String> stringValueFactory)
           
JodaDateTimeValueFactory(TextDecoder decoder, ValueFactory<String> stringValueFactory)
           
LongValueFactory(TextDecoder decoder, ValueFactory<String> stringValueFactory)
           
NameValueFactory(NamespaceRegistry namespaceRegistry, TextDecoder decoder, ValueFactory<String> stringValueFactory)
           
ObjectValueFactory(TextDecoder decoder, ValueFactory<String> stringValueFactory, ValueFactory<Binary> binaryValueFactory)
           
PathValueFactory(TextDecoder decoder, ValueFactory<String> stringValueFactory, ValueFactory<Name> nameValueFactory)
           
ReferenceValueFactory(TextDecoder decoder, ValueFactory<String> stringValueFactory, boolean weak)
           
StandardValueFactories(NamespaceRegistry namespaceRegistry, TextDecoder decoder, TextEncoder encoder, ValueFactory<?>... extraFactories)
          Create a standard set of value factories, using the supplied encoder/decoder.
StringValueFactory(NamespaceRegistry namespaceRegistry, TextDecoder decoder, TextEncoder encoder)
           
StringValueFactory(TextDecoder decoder, TextEncoder encoder)
           
UriValueFactory(NamespaceRegistry namespaceRegistry, TextDecoder decoder, ValueFactory<String> stringValueFactory)
           
UuidValueFactory(TextDecoder decoder, ValueFactory<String> stringValueFactory)
           
 

Uses of TextDecoder in org.modeshape.graph.xml
 

Fields in org.modeshape.graph.xml declared as TextDecoder
protected  TextDecoder XmlHandler.decoder
          The TextDecoder that is used to decode the names.
static TextDecoder XmlHandler.DEFAULT_DECODER
          Decoder for XML names, to turn '_xHHHH_' sequences in the XML element and attribute names into the corresponding UTF-16 characters.
 

Constructors in org.modeshape.graph.xml with parameters of type TextDecoder
XmlHandler(Destination destination, boolean skipRootElement, Path parent, TextDecoder textDecoder, Name nameAttribute, Name typeAttribute, Name typeAttributeValue, XmlHandler.AttributeScoping scoping)
          Create a handler that creates content in the supplied graph
 

Uses of TextDecoder in org.modeshape.maven
 

Methods in org.modeshape.maven with parameters of type TextDecoder
static MavenUrl MavenUrl.parse(String url, TextDecoder decoder)
          Parse the supplied URL and determine if the URL fits the JCR URL format.
static MavenUrl MavenUrl.parse(URL url, TextDecoder decoder)
          Parse the supplied URL and determine if the URL fits the JCR URL format.
 

Uses of TextDecoder in org.modeshape.maven.spi
 

Methods in org.modeshape.maven.spi that return TextDecoder
protected  TextDecoder JcrMavenUrlProvider.getUrlDecoder()
           
 

Uses of TextDecoder in org.modeshape.sequencer.xml
 

Fields in org.modeshape.sequencer.xml declared as TextDecoder
protected  TextDecoder XmlSequencerHandler.decoder
          The TextDecoder that is used to decode the names.
static TextDecoder XmlSequencerHandler.DEFAULT_DECODER
          Decoder for XML names, to turn '_xHHHH_' sequences in the XML element and attribute names into the corresponding UTF-16 characters.
 



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