Uses of Class
org.eclipse.internal.xtend.util.QualifiedNameWithDelimiter

Packages that use QualifiedNameWithDelimiter
org.eclipse.internal.xtend.util Utility classes 
 

Uses of QualifiedNameWithDelimiter in org.eclipse.internal.xtend.util
 

Fields in org.eclipse.internal.xtend.util declared as QualifiedNameWithDelimiter
protected static QualifiedNameWithDelimiter QualifiedNameWithDelimiter.EMPTY
          The qualified name instance corresponding to "/".
protected static QualifiedNameWithDelimiter QualifiedNameWithDelimiter.EMPTY_WITHOUT_LEADING_SLASH
          The qualified name instance corresponding to the empty string.
 

Methods in org.eclipse.internal.xtend.util that return QualifiedNameWithDelimiter
 QualifiedNameWithDelimiter QualifiedNameWithDelimiter.append(QualifiedNameWithDelimiter qualifiedName)
          Returns an instance with the given additional segments.
 QualifiedNameWithDelimiter QualifiedNameWithDelimiter.append(java.lang.String segment)
          Returns an instance with the additional segment or segments, if the given segment contains '/'.
static QualifiedNameWithDelimiter QualifiedNameWithDelimiter.create(java.lang.String... segments)
          Returns the qualified name for the given segments, splitting individual segments as appropriate.
static QualifiedNameWithDelimiter QualifiedNameWithDelimiter.create(java.lang.String qualifiedName)
          Returns the qualified name for the argument, splitting into segments as appropriate.
static QualifiedNameWithDelimiter QualifiedNameWithDelimiter.createWithoutLeadingSlash(java.lang.String... segments)
          Returns the qualified name for the given segments, splitting individual segments as appropriate.
 QualifiedNameWithDelimiter QualifiedNameWithDelimiter.QualifiedNameCache.intern(boolean hasLeadingSlash, boolean needsCopying, boolean needsToIntern, java.lang.String[] segments)
          Interns the segments, taking into account the leading slash, copying the array when needed, and interning the segments themselves, when needed.
protected  QualifiedNameWithDelimiter QualifiedNameWithDelimiter.QualifiedNameCache.intern(boolean hasLeadingSlash, java.lang.String[] segments, java.lang.String segment)
          Interns the segments along with the one additional segment, taking into account the leading slash and interning the additional segment.
protected  QualifiedNameWithDelimiter QualifiedNameWithDelimiter.QualifiedNameCache.intern(boolean hasLeadingSlash, java.lang.String[] segments1, java.lang.String[] segments2)
          Interns the composed segments, taking into account the leading slash.
protected  QualifiedNameWithDelimiter QualifiedNameWithDelimiter.QualifiedNameCache.intern(java.lang.String name)
          Interns the string representation of a qualified name, splitting it into appropriate segments.
 

Methods in org.eclipse.internal.xtend.util with parameters of type QualifiedNameWithDelimiter
 QualifiedNameWithDelimiter QualifiedNameWithDelimiter.append(QualifiedNameWithDelimiter qualifiedName)
          Returns an instance with the given additional segments.