Class SimpleNamespace

java.lang.Object
org.eclipse.rdf4j.model.base.AbstractNamespace
org.eclipse.rdf4j.model.impl.SimpleNamespace
All Implemented Interfaces:
Serializable, Comparable<Namespace>, Namespace

public class SimpleNamespace extends AbstractNamespace
A default implementation of the Namespace interface.
See Also:
  • Constructor Details

    • SimpleNamespace

      public SimpleNamespace(String prefix, String name)
      Creates a new Namespace object.
      Parameters:
      prefix - The namespace's prefix.
      name - The namespace's name.
  • Method Details

    • getPrefix

      public String getPrefix()
      Gets the prefix of the namespace.
      Returns:
      prefix of the namespace
    • setPrefix

      public void setPrefix(String prefix)
      Sets the prefix of the namespace.
      Parameters:
      prefix - The (new) prefix for this namespace.
    • getName

      public String getName()
      Gets the name of the namespace.
      Returns:
      name of the namespace
    • setName

      public void setName(String name)
      Sets the name of the namespace.
      Parameters:
      name - The (new) name for this namespace.