Class LocalUri
- java.lang.Object
-
- org.kie.efesto.common.api.identifiers.LocalUri
-
- Direct Known Subclasses:
LocalUri.LocalUriPathComponent,LocalUri.LocalUriRoot
public abstract class LocalUri extends Object
A uri of the form: kogito-local:///a/b/c...For instance: for "/a/b/c" the
LocalUriis represented as:LocalUri( LocalUri( LocalUri(Root, "a"), "b"), "c")And it may be constructed with:
LocalUri.Root.append("a").append("b").append("c");
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classLocalUri.LocalUriPathComponentA component of aLocalUri.static classLocalUri.LocalUriRootRoot of aLocalUri: "/"
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description LocalUriappend(String component)abstract LocalUriparent()static LocalUriparse(String path)abstract Stringpath()abstract booleanstartsWith(String component)StringtoString()URItoUri()
-
-
-
Field Detail
-
SCHEME
public static final String SCHEME
- See Also:
- Constant Field Values
-
Root
public static final LocalUri Root
-
-