Class NamespaceHelper
- java.lang.Object
-
- org.opencds.cqf.cql.engine.execution.NamespaceHelper
-
public class NamespaceHelper extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description NamespaceHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.StringgetNamePart(java.lang.String namespaceQualifiedName)Gets the the name part of a fully qualified name.static java.lang.StringgetUriPart(java.lang.String namespaceQualifiedName)Gets the the namespace part of a fully qualified name.
-
-
-
Method Detail
-
getUriPart
public static java.lang.String getUriPart(java.lang.String namespaceQualifiedName)
Gets the the namespace part of a fully qualified name. Returns null ifnamspaceQualifiedNameis not qualified by namespace. Returns null ifnamspaceQualifiedNameis null- Parameters:
namespaceQualifiedName- The fully qualified name- Returns:
- the namespace part
-
getNamePart
public static java.lang.String getNamePart(java.lang.String namespaceQualifiedName)
Gets the the name part of a fully qualified name. Returns null ifnamspaceQualifiedNameis null- Parameters:
namespaceQualifiedName- The fully qualified name- Returns:
- the name part
-
-