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

Packages that use TextEncoder
org.modeshape.common.text A set of utilities for working with text. 
org.modeshape.graph The ModeShape Graph API defines the types that allow you to work with content organized as a graph. 
org.modeshape.graph.connector.federation ModeShape provides a federated connector that is able to access repository content from multiple external systems and make that content look like it exists in a single unified repository. 
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. 
 

Uses of TextEncoder in org.modeshape.common.text
 

Classes in org.modeshape.common.text that implement TextEncoder
 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 SecureHashTextEncoder
          A text encoder that performs a secure hash of the input text and returns that hash as the encoded text.
 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 TextEncoder in org.modeshape.graph
 

Methods in org.modeshape.graph with parameters of type TextEncoder
 String Location.getString(NamespaceRegistry namespaceRegistry, TextEncoder encoder)
          Get the encoded string form of the location, using the supplied encoder to encode characters in each of the location's path and properties.
 String Location.getString(NamespaceRegistry namespaceRegistry, TextEncoder encoder, TextEncoder delimiterEncoder)
          Get the encoded string form of the location, using the supplied encoder to encode characters in each of the location's path and properties.
 String Location.getString(TextEncoder encoder)
          Get the encoded string form of the location, using the supplied encoder to encode characters in each of the location's path and properties.
 

Uses of TextEncoder in org.modeshape.graph.connector.federation
 

Methods in org.modeshape.graph.connector.federation with parameters of type TextEncoder
abstract  String Projection.Rule.getString(NamespaceRegistry registry, TextEncoder encoder)
           
 String Projection.PathRule.getString(NamespaceRegistry registry, TextEncoder encoder)
           
abstract  String Projection.Rule.getString(TextEncoder encoder)
           
 String Projection.PathRule.getString(TextEncoder encoder)
          
 

Uses of TextEncoder in org.modeshape.graph.property
 

Fields in org.modeshape.graph.property declared as TextEncoder
static TextEncoder ValueFactory.DEFAULT_ENCODER
           
static TextEncoder Path.DEFAULT_ENCODER
          The default text encoder to be used when none is otherwise specified.
static TextEncoder Path.JSR283_ENCODER
          The text encoder that encodes according to JSR-283.
static TextEncoder Path.NO_OP_ENCODER
          The text encoder that does nothing.
static TextEncoder Path.URL_ENCODER
          The text encoder that encodes text according to the rules of RFC 2396.
 

Methods in org.modeshape.graph.property with parameters of type TextEncoder
 String Readable.getString(NamespaceRegistry namespaceRegistry, TextEncoder encoder)
          Get the encoded string form of the object, using the supplied namespace registry to convert the any namespace URIs to prefixes.
 String Readable.getString(NamespaceRegistry namespaceRegistry, TextEncoder encoder, TextEncoder delimiterEncoder)
          Get the encoded string form of the object, using the supplied namespace registry to convert the names' namespace URIs to prefixes and the supplied encoder to encode characters, and using the second delimiter to encode (or convert) the delimiter used between the namespace prefix and the local part of any names.
 String Reference.getString(TextEncoder encoder)
          Get the encoded string form of the Reference, using the supplied encoder to encode characters in the reference.
 String Readable.getString(TextEncoder encoder)
          Get the encoded string form of the object, using the supplied encoder to encode characters.
 



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