public class ActorPaths$
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
static ActorPaths$ |
MODULE$
Static reference to the singleton instance of this Scala object.
|
| Constructor and Description |
|---|
ActorPaths$() |
| Modifier and Type | Method and Description |
|---|---|
ActorPath |
fromString(java.lang.String s)
Parse string as actor path; throws java.net.MalformedURLException if unable to do so.
|
boolean |
isValidPathElement(java.lang.String s)
This method is used to validate a path element (Actor Name).
|
void |
validatePathElement(java.lang.String element)
Validates the given actor path element and throws an
InvalidActorNameException if invalid. |
void |
validatePathElement(java.lang.String element,
java.lang.String fullPath)
Validates the given actor path element and throws an
InvalidActorNameException if invalid. |
public static final ActorPaths$ MODULE$
public ActorPath fromString(java.lang.String s)
s - (undocumented)public final void validatePathElement(java.lang.String element)
InvalidActorNameException if invalid.
See isValidPathElement(java.lang.String) for a non-throwing version.
element - actor path element to be validatedpublic final void validatePathElement(java.lang.String element,
java.lang.String fullPath)
InvalidActorNameException if invalid.
See isValidPathElement(java.lang.String) for a non-throwing version.
element - actor path element to be validatedfullPath - optional fullPath element that may be included for better error messages; null if not givenpublic final boolean isValidPathElement(java.lang.String s)
User defined Actor names may not start from a $ sign - these are reserved for system names.
s - (undocumented)