final case class FieldPath(parts: List[String]) extends AnyVal with Product with Serializable
jap.fields.FieldPath contains path parts of the Field.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- FieldPath
- Serializable
- Product
- Equals
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new FieldPath(parts: List[String])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- def +(path: String): FieldPath
Append other path part to current path
- def ++(path: FieldPath): FieldPath
Append other jap.fields.FieldPath to current path
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def full: String
Full name of the path is dot-separated parts of this path.
Full name of the path is dot-separated parts of this path. For root path this will be "root" (Object of discussion what this should be)
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isRoot: Boolean
Is current path root.
- def name: String
Name of the path is the last part of path.
- def named(name: String): FieldPath
Changes name of this path
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def toString(): String
- Definition Classes
- FieldPath → Any